Security - Areas of Interest
This section lists the key areas within the source code that need to be examined for identifying potential security weaknesses.
The code reviewer should carefully examine the identified areas and review any reported code
snippets and file paths to validate the presence of any potential vulnerabilities. The validation
process should involve a thorough analysis of the code and its associated components to
determine the extent of the potential security risk. Any issues identified during the validation
process should be documented.
[+] Keyword Searched : Tainted Inputs: $_GET
- Source File : i_academy/application/config/config.php
| [195]| Allow $_GET array
|
| [198]| By default CodeIgniter enables access to the $_GET array. If for some
|
- Source File : i_academy/application/controllers/Admin.php
| [572] $page_data['selected_category_id'] = isset($_GET['category_id']) ? $_GET['category_id'] : "all";
|
| [573] $page_data['selected_instructor_id'] = isset($_GET['instructor_id']) ? $_GET['instructor_id'] : "all";
|
| [574] $page_data['selected_price'] = isset($_GET['price']) ? $_GET['price'] : "all";
|
| [575] $page_data['selected_status'] = isset($_GET['status']) ? $_GET['status'] : "all";
|
| [1446] if (!isset($_GET['permission_assing_to']) || empty($_GET['permission_assing_to'])) {
|
- Source File : i_academy/application/controllers/Api.php
| [46] $category_id = $_GET['category_id'];
|
| [65] $search_string = $_GET['search_string'];
|
| [92] $auth_token = $_GET['auth_token'];
|
| [106] $auth_token = $_GET['auth_token'];
|
| [120] $auth_token = $_GET['auth_token'];
|
| [121] $course_id = $_GET['course_id'];
|
| [134] $auth_token = $_GET['auth_token'];
|
| [135] $section_id = $_GET['section_id'];
|
| [146] $auth_token = $_GET['auth_token'];
|
| [158] $auth_token = $_GET['auth_token'];
|
| [159] $lesson_id = $_GET['lesson_id'];
|
| [173] $course_id = $_GET['course_id'];
|
| [174] if (isset($_GET['auth_token']) && !empty($_GET['auth_token'])) {
|
| [175] $auth_token = $_GET['auth_token'];
|
| [226] if (isset($_GET['auth_token']) && !empty($_GET['auth_token'])) {
|
| [227] $auth_token = $_GET['auth_token'];
|
| [295] if (isset($_GET['auth_token']) && !empty($_GET['auth_token'])) {
|
| [296] $auth_token = $_GET['auth_token'];
|
| [309] if (isset($_GET['auth_token']) && !empty($_GET['auth_token'])) {
|
| [310] $auth_token = $_GET['auth_token'];
|
| [313] $course_id = $_GET['course_id'];
|
- Source File : i_academy/application/controllers/Api_instructor.php
| [99] if (isset($_GET['auth_token']) && !empty($_GET['auth_token'])) {
|
| [100] $auth_token = $_GET['auth_token'];
|
| [128] if(isset($_GET['auth_token']) && !empty($_GET['auth_token'])){
|
| [129] $auth_token = $_GET['auth_token'];
|
| [158] if(isset($_GET['auth_token']) && !empty($_GET['auth_token']) && isset($_GET['course_id']) && !empty($_GET['course_id'])){
|
| [159] $course_id = $_GET['course_id'];
|
| [160] $auth_token = $_GET['auth_token'];
|
| [183] if(isset($_GET['auth_token']) && !empty($_GET['auth_token'])){
|
| [184] $auth_token = $_GET['auth_token'];
|
| [185] $course_id = $_GET['course_id'];
|
| [186] $status = $_GET['status'];
|
| [196] if(isset($_GET['auth_token']) && !empty($_GET['auth_token'])){
|
| [197] $auth_token = $_GET['auth_token'];
|
| [198] $course_id = $_GET['course_id'];
|
| [220] if(isset($_GET['auth_token']) && !empty($_GET['auth_token'])){
|
| [221] $auth_token = $_GET['auth_token'];
|
| [222] $course_id = $_GET['course_id'];
|
| [245] if(isset($_GET['auth_token']) && !empty($_GET['auth_token'])){
|
| [246] $auth_token = $_GET['auth_token'];
|
| [247] $course_id = $_GET['course_id'];
|
| [258] if(isset($_GET['auth_token']) && !empty($_GET['auth_token']) && isset($_GET['course_id']) && !empty($_GET['course_id'])){
|
| [259] $auth_token = $_GET['auth_token'];
|
| [260] $course_id = $_GET['course_id'];
|
| [270] if(isset($_GET['auth_token']) && !empty($_GET['auth_token']) && isset($_GET['course_id']) && !empty($_GET['course_id'])){
|
| [271] $auth_token = $_GET['auth_token'];
|
| [272] $course_id = $_GET['course_id'];
|
| [331] if(isset($_GET['lesson_id']) && !empty($_GET['lesson_id'])){
|
| [332] $response = $this->api_instructor_model->lesson_all_data_get($_GET['lesson_id']);
|
| [352] if(isset($_GET['auth_token']) && !empty($_GET['auth_token']) && isset($_GET['lesson_id']) && !empty($_GET['lesson_id'])){
|
| [353] $auth_token = $_GET['auth_token'];
|
| [354] $lesson_id = $_GET['lesson_id'];
|
| [378] if(isset($_GET['auth_token']) && !empty($_GET['auth_token'])){
|
| [379] $auth_token = $_GET['auth_token'];
|
| [380] $course_id = $_GET['course_id'];
|
| [402] if(isset($_GET['auth_token']) && !empty($_GET['auth_token'])){
|
| [403] $auth_token = $_GET['auth_token'];
|
| [413] if(isset($_GET['payment_id']) && !empty($_GET['payment_id'])){
|
| [414] $payment_id = $_GET['payment_id'];
|
| [423] if(isset($_GET['auth_token']) && !empty($_GET['auth_token'])){
|
| [424] $auth_token = $_GET['auth_token'];
|
| [446] if(isset($_GET['auth_token']) && !empty($_GET['auth_token'])){
|
| [447] $auth_token = $_GET['auth_token'];
|
- Source File : i_academy/application/controllers/Home.php
| [66] if (isset($_GET['category']) && !empty($_GET['category'] && $_GET['category'] != "all")) {
|
| [67] $selected_category_id = $this->crud_model->get_category_id($_GET['category']);
|
| [71] if (isset($_GET['price']) && !empty($_GET['price'])) {
|
| [72] $selected_price = $_GET['price'];
|
| [76] if (isset($_GET['level']) && !empty($_GET['level'])) {
|
| [77] $selected_level = $_GET['level'];
|
| [81] if (isset($_GET['language']) && !empty($_GET['language'])) {
|
| [82] $selected_language = $_GET['language'];
|
| [86] if (isset($_GET['rating']) && !empty($_GET['rating'])) {
|
| [87] $selected_rating = $_GET['rating'];
|
| [536] if (isset($_GET['query']) && !empty($_GET['query'])) {
|
| [537] $search_string = $_GET['query'];
|
| [921] $course_id_1 = (isset($_GET['course-id-1']) && !empty($_GET['course-id-1'])) ? $_GET['course-id-1'] : null;
|
| [922] $course_id_2 = (isset($_GET['course-id-2']) && !empty($_GET['course-id-2'])) ? $_GET['course-id-2'] : null;
|
| [923] $course_id_3 = (isset($_GET['course-id-3']) && !empty($_GET['course-id-3'])) ? $_GET['course-id-3'] : null;
|
- Source File : i_academy/application/controllers/User.php
| [80] $page_data['selected_category_id'] = isset($_GET['category_id']) ? $_GET['category_id'] : "all";
|
| [82] $page_data['selected_price'] = isset($_GET['price']) ? $_GET['price'] : "all";
|
| [83] $page_data['selected_status'] = isset($_GET['status']) ? $_GET['status'] : "all";
|
- Source File : i_academy/application/models/Api_instructor_model.php
| [926] $lesson_id = $_GET['lesson_id'];
|
| [1272] if (isset($_GET['date_range']) && !empty($_GET['date_range'])) {
|
| [1273] $date_range = explode('_', $_GET['date_range']);
|
- Source File : i_academy/application/models/Api_model.php
| [68] $selected_category = $_GET['selected_category'];
|
| [69] $selected_price = $_GET['selected_price'];
|
| [70] $selected_level = $_GET['selected_level'];
|
| [71] $selected_language = $_GET['selected_language'];
|
| [72] $selected_rating = $_GET['selected_rating'];
|
| [73] $selected_search_string = ltrim(rtrim($_GET['selected_search_string']));
|
| [266] $credential = array('email' => $_GET['email'], 'password' => sha1($_GET['password']), 'status' => 1);
|
| [319] $course_id = $_GET['course_id'];
|
| [493] $course_id = $_GET['course_id'];
|
| [526] $lesson_id = $_GET['lesson_id'];
|
| [527] $progress = $_GET['progress'];
|
- Source File : i_academy/application/models/Payment_model.php
| [45] //$session_id = $_GET['session_id'];
|
- Source File : i_academy/system/core/Input.php
| [63] * If set to FALSE, then $_GET will be set to an empty array.
|
| [134] * and whether to allow the $_GET array.
|
| [172] * @param array &$array $_GET, $_POST, $_COOKIE, $_SERVER, etc.
|
| [236] * @param mixed $index Index for item to be fetched from $_GET
|
| [242] return $this->_fetch_from_array($_GET, $index, $xss_clean);
|
| [308] * @param string $index Index for item to be fetched from $_POST or $_GET
|
| [324] * @param string $index Index for item to be fetched from $_GET or $_POST
|
| [330] return isset($_GET[$index])
|
| [674] * - Unsets $_GET data, if query strings are not enabled
|
| [682] // Is $_GET data allowed? If not we'll set the $_GET to an empty array
|
| [685] $_GET = array();
|
| [687] elseif (is_array($_GET))
|
| [689] foreach ($_GET as $key => $val)
|
| [691] $_GET[$this->_clean_input_keys($key)] = $this->_clean_input_data($val);
|
- Source File : i_academy/system/core/Output.php
| [573] $uri .= '?'.http_build_query(array_intersect_key($_GET, array_flip($cache_query_string)));
|
| [667] $uri .= '?'.http_build_query(array_intersect_key($_GET, array_flip($cache_query_string)));
|
| [755] $uri .= '?'.http_build_query(array_intersect_key($_GET, array_flip($cache_query_string)));
|
- Source File : i_academy/system/core/Router.php
| [188] $_d = isset($_GET[$_d]) ? trim($_GET[$_d], " \t\n\r\0\x0B/") : '';
|
| [198] if ( ! empty($_GET[$_c]))
|
| [200] $this->uri->filter_uri($_GET[$_c]);
|
| [201] $this->set_class($_GET[$_c]);
|
| [204] if ( ! empty($_GET[$_f]))
|
| [206] $this->uri->filter_uri($_GET[$_f]);
|
| [207] $this->set_method($_GET[$_f]);
|
- Source File : i_academy/system/core/URI.php
| [223] // URI is found, and also fixes the QUERY_STRING server var and $_GET array.
|
| [235] parse_str($_SERVER['QUERY_STRING'], $_GET);
|
| [270] parse_str($_SERVER['QUERY_STRING'], $_GET);
|
- Source File : i_academy/system/libraries/Profiler.php
| [296] * Compile $_GET Data
|
| [307] if (count($_GET) === 0)
|
| [315] foreach ($_GET as $key => $val)
|
[+] Keyword Searched : Tainted Inputs: $_COOKIE
- Source File : i_academy/application/controllers/Home.php
| [351] $page_data['total_price_of_checking_out'] = $_COOKIE['total_price_of_checking_out'];
|
- Source File : i_academy/application/controllers/Login.php
| [228] $sdata = $_COOKIE['reg_data'];
|
- Source File : i_academy/application/views/payment/payment_gateway.php
| [167]$this->session->set_userdata('total_price_of_checking_out', $_COOKIE['total_price_of_checking_out']);
|
- Source File : i_academy/system/core/Input.php
| [172] * @param array &$array $_GET, $_POST, $_COOKIE, $_SERVER, etc.
|
| [340] * @param mixed $index Index for item to be fetched from $_COOKIE
|
| [346] return $this->_fetch_from_array($_COOKIE, $index, $xss_clean);
|
| [704] // Clean $_COOKIE Data
|
| [705] if (is_array($_COOKIE))
|
| [713] $_COOKIE['$Version'],
|
| [714] $_COOKIE['$Path'],
|
| [715] $_COOKIE['$Domain']
|
| [718] foreach ($_COOKIE as $key => $val)
|
| [722] $_COOKIE[$cookie_key] = $this->_clean_input_data($val);
|
| [726] unset($_COOKIE[$key]);
|
- Source File : i_academy/system/core/Security.php
| [230] $valid = isset($_POST[$this->_csrf_token_name], $_COOKIE[$this->_csrf_cookie_name])
|
| [231] && hash_equals($_POST[$this->_csrf_token_name], $_COOKIE[$this->_csrf_cookie_name]);
|
| [240] unset($_COOKIE[$this->_csrf_cookie_name]);
|
| [1075] if (isset($_COOKIE[$this->_csrf_cookie_name]) && is_string($_COOKIE[$this->_csrf_cookie_name])
|
| [1076] && preg_match('#^[0-9a-f]{32}$#iS', $_COOKIE[$this->_csrf_cookie_name]) === 1)
|
| [1078] return $this->_csrf_hash = $_COOKIE[$this->_csrf_cookie_name];
|
- Source File : i_academy/system/helpers/cookie_helper.php
| [91] $prefix = isset($_COOKIE[$index]) ? '' : config_item('cookie_prefix');
|
- Source File : i_academy/system/libraries/Session/Session.php
| [133] if (isset($_COOKIE[$this->_config['cookie_name']])
|
| [135] ! is_string($_COOKIE[$this->_config['cookie_name']])
|
| [136] OR ! preg_match('#\A'.$this->_sid_regexp.'\z#', $_COOKIE[$this->_config['cookie_name']])
|
| [140] unset($_COOKIE[$this->_config['cookie_name']]);
|
| [161] elseif (isset($_COOKIE[$this->_config['cookie_name']]) && $_COOKIE[$this->_config['cookie_name']] === session_id())
|
- Source File : i_academy/system/libraries/Session/Session_driver.php
| [124] if (PHP_VERSION_ID < 70000 && isset($_COOKIE[$this->_config['cookie_name']]) && ! $this->validateId($_COOKIE[$this->_config['cookie_name']]))
|
| [126] unset($_COOKIE[$this->_config['cookie_name']]);
|
[+] Keyword Searched : Command Injection: shell_exec|exec|passthru|system|popen|backtick
- Source File : i_academy/application/config/constants.php
| [39]| These modes are used when working with fopen()/popen()
|
- Source File : i_academy/application/libraries/Paystack.php
| [569] $this->PaystackHttpResponse->body = \curl_exec($ch);
|
- Source File : i_academy/application/libraries/Stripe/build.php
| [16]\passthru('composer update', $returnStatus);
|
| [22]\passthru("./vendor/bin/phpunit -c {$config}", $returnStatus);
|
- Source File : i_academy/application/libraries/Stripe/update_certs.php
- Source File : i_academy/application/libraries/Stripe/lib/HttpClient/CurlClient.php
| [309] $rbody = \curl_exec($this->curlHandle);
|
- Source File : i_academy/application/models/Crud_model.php
| [2018] $cinit_verify_data = curl_exec($ch_verify);
|
| [2372] $cinit_verify_data = curl_exec($ch_verify);
|
- Source File : i_academy/application/models/Payment_model.php
| [141] $response = curl_exec($ch);
|
| [158] $response = curl_exec($curl);
|
- Source File : i_academy/system/core/Input.php
| [293] $response = curl_exec($ch);
|
| [368] $response = curl_exec($ch);
|
- Source File : i_academy/system/core/Security.php
| [550] '#(alert|prompt|confirm|cmd|passthru|eval|exec|expression|system|fopen|fsockopen|file|file_get_contents|readfile|unlink)(\s*)`(.*?)`#si',
|
- Source File : i_academy/system/database/DB_query_builder.php
| [1275] $response = curl_exec($ch);
|
- Source File : i_academy/system/database/drivers/odbc/odbc_driver.php
| [224] return odbc_exec($this->conn_id, $sql);
|
- Source File : i_academy/system/database/drivers/sqlite/sqlite_driver.php
| [83] ? sqlite_popen($this->database, 0666, $error)
|
| [116] ? sqlite_exec($this->conn_id, $sql)
|
- Source File : i_academy/system/database/drivers/sqlite3/sqlite3_driver.php
| [128] ? $this->conn_id->exec($sql)
|
| [141] return $this->conn_id->exec('BEGIN TRANSACTION');
|
| [153] return $this->conn_id->exec('END TRANSACTION');
|
| [165] return $this->conn_id->exec('ROLLBACK');
|
- Source File : i_academy/system/helpers/text_helper.php
| [277] $delim = '[-_\'\"`(){}<>\[\]|!?@#%&,.:;^~*+=\/ 0-9\n\r\t]';
|
- Source File : i_academy/system/libraries/Email.php
| [1927] // is popen() enabled?
|
| [1928] if ( ! function_usable('popen') OR FALSE === ($fp = @popen($this->mailpath.' -oi '.$from.' -t', 'w')))
|
- Source File : i_academy/system/libraries/Image_lib.php
| [898] // exec() might be disabled
|
| [901] @exec($cmd, $output, $retval);
|
| [981] // exec() might be disabled
|
| [984] @exec($cmd, $output, $retval);
|
- Source File : i_academy/system/libraries/Upload.php
| [1255] * - many system admins would disable the exec(), shell_exec(), popen() and similar functions
|
| [1267] * However, we only need the last line, which is the actual return value of exec(), and as such - it overwrites
|
| [1271] $mime = @exec($cmd, $mime, $return_status);
|
| [1281] $mime = @shell_exec($cmd);
|
| [1295] $proc = @popen($cmd, 'r');
|
- Source File : i_academy/system/libraries/Session/Session.php
| [826] $response = curl_exec($ch);
|
| [881] $response = curl_exec($ch);
|
[+] Keyword Searched : Arbitrary Code Execution: eval|exec
- Source File : i_academy/application/config/config.php
| [505]| Note: You need to have eval() enabled for this to work.
|
- Source File : i_academy/system/core/Loader.php
| [964] echo eval('?>'.preg_replace('/;*\s*\?>/', '; ?>', str_replace('<?=', '<?php echo ', file_get_contents($_ci_path))));
|
- Source File : i_academy/system/core/Security.php
| [450] 'write', 'cookie', 'window', 'confirm', 'prompt', 'eval'
|
| [538] * For example: eval('some code')
|
| [539] * Becomes: eval('some code')
|
| [542] '#(alert|prompt|confirm|cmd|passthru|eval|exec|expression|system|fopen|fsockopen|file|file_get_contents|readfile|unlink)(\s*)\((.*?)\)#si',
|
| [547] // Same thing, but for "tag functions" (e.g. eval`some code`)
|
| [550] '#(alert|prompt|confirm|cmd|passthru|eval|exec|expression|system|fopen|fsockopen|file|file_get_contents|readfile|unlink)(\s*)`(.*?)`#si',
|
| [968] '#src=.*?(?:(?:alert|prompt|confirm|eval)(?:\(|&\#40;|`|&\#96;)|javascript:|livescript:|mocha:|charset=|window\.|\(?document\)?\.|\.cookie|<script|<xss|base64\s*,)#si',
|
- Source File : i_academy/system/database/drivers/sqlite3/sqlite3_driver.php
| [128] ? $this->conn_id->exec($sql)
|
| [141] return $this->conn_id->exec('BEGIN TRANSACTION');
|
| [153] return $this->conn_id->exec('END TRANSACTION');
|
| [165] return $this->conn_id->exec('ROLLBACK');
|
- Source File : i_academy/system/libraries/Image_lib.php
| [898] // exec() might be disabled
|
| [899] if (function_usable('exec'))
|
| [901] @exec($cmd, $output, $retval);
|
| [981] // exec() might be disabled
|
| [982] if (function_usable('exec'))
|
| [984] @exec($cmd, $output, $retval);
|
- Source File : i_academy/system/libraries/Upload.php
| [1255] * - many system admins would disable the exec(), shell_exec(), popen() and similar functions
|
| [1264] if (function_usable('exec'))
|
| [1267] * However, we only need the last line, which is the actual return value of exec(), and as such - it overwrites
|
| [1271] $mime = @exec($cmd, $mime, $return_status);
|
[+] Keyword Searched : Insecure Method Call: include() and require()
- Source File : i_academy/system/core/CodeIgniter.php
| [178] require_once($composer_autoload);
|
- Source File : i_academy/system/core/Common.php
| [249] require($file_path);
|
| [255] require($file_path);
|
- Source File : i_academy/system/core/Config.php
| [146] include($file_path);
|
- Source File : i_academy/system/core/Exceptions.php
| [219] include($templates_path.'error_exception.php');
|
- Source File : i_academy/system/core/Hooks.php
| [238] class_exists($class, FALSE) OR require_once($filepath);
|
| [252] function_exists($function) OR require_once($filepath);
|
- Source File : i_academy/system/core/Lang.php
| [124] include($basepath);
|
| [133] include($alt_path);
|
| [144] include($package_path);
|
- Source File : i_academy/system/core/Loader.php
| [301] require_once($app_path.'Model.php');
|
| [461] require_once($driver_path);
|
| [628] include_once($base_helper);
|
| [968] include($_ci_path); // include() vs include_once() allows for multiple views with the same name
|
| [1082] include_once($filepath);
|
| [1149] include_once($path);
|
| [1167] include_once($path);
|
- Source File : i_academy/system/database/DB.php
| [63] include($file_path);
|
| [75] include($file_path);
|
| [79] include($file_path);
|
| [197] require_once($driver_file);
|
| [210] require_once($driver_file);
|
- Source File : i_academy/system/libraries/Driver.php
| [140] include_once($basepath);
|
| [141] include_once($file);
|
| [163] include_once($file);
|
- Source File : i_academy/system/libraries/Migration.php
| [282] include_once($file);
|
- Source File : i_academy/system/libraries/Session/Session.php
| [208] require_once($file_path);
|
| [217] require_once($file_path);
|
| [228] require_once($file_path);
|
| [239] require_once($file_path);
|
[+] Keyword Searched : Multiple Insecure Calls
- Source File : i_academy/index.php
| [84] header('HTTP/1.1 503 Service Unavailable.', TRUE, 503);
|
| [208] header('HTTP/1.1 503 Service Unavailable.', TRUE, 503);
|
| [248] header('HTTP/1.1 503 Service Unavailable.', TRUE, 503);
|
| [275] header('HTTP/1.1 503 Service Unavailable.', TRUE, 503);
|
- Source File : i_academy/application/config/rest.php
| [373]| Custom header to specify the API key
|
- Source File : i_academy/application/controllers/Api.php
| [15] header('Content-Type: application/json');
|
- Source File : i_academy/application/controllers/Api_instructor.php
| [16] header('Content-Type: application/json');
|
- Source File : i_academy/application/controllers/Home.php
| [764] header('Content-Description: File Transfer');
|
| [765] header('Content-Type: text/plain');
|
| [766] header('Content-Disposition: attachment; filename=' . $filename);
|
| [767] header('Expires: 0');
|
| [768] header('Cache-Control: must-revalidate');
|
| [769] header('Pragma: public');
|
| [770] header('Content-Length: ' . filesize($yourFile));
|
- Source File : i_academy/application/libraries/JWT.php
| [81] if (null === ($header = static::jsonDecode(static::urlsafeB64Decode($headb64)))) {
|
| [82] throw new UnexpectedValueException('Invalid header encoding');
|
| [90] if (empty($header->alg)) {
|
| [93] if (empty(static::$supported_algs[$header->alg])) {
|
| [96] if (!in_array($header->alg, $allowed_algs)) {
|
| [100] if (isset($header->kid)) {
|
| [101] if (!isset($key[$header->kid])) {
|
| [104] $key = $key[$header->kid];
|
| [111] if (!static::verify("$headb64.$bodyb64", $sig, $key, $header->alg)) {
|
| [149] * @param array $head An array with header elements to attach
|
| [158] $header = array('typ' => 'JWT', 'alg' => $alg);
|
| [160] $header['kid'] = $keyId;
|
| [163] $header = array_merge($head, $header);
|
| [166] $segments[] = static::urlsafeB64Encode(static::jsonEncode($header));
|
| [212] * @param string $msg The original message (header and body)
|
- Source File : i_academy/application/libraries/Paystack.php
| [540] 'header'=>$this->flattenedHeaders(),
|
- Source File : i_academy/application/libraries/REST_Controller.php
| [532] //get header vars
|
| [840] // Set the format header
|
| [930] // Check all formats against the CONTENT-TYPE header
|
| [996] // Check all formats against the HTTP_ACCEPT header
|
| [2055] // If the authentication header is set as basic, then extract the username and password from
|
| [2178] * Force logging in by setting the WWW-Authenticate header
|
| [2192] header('WWW-Authenticate: Basic realm="'.$rest_realm.'"');
|
| [2197] header(
|
| [2310] header('Access-Control-Allow-Origin: *');
|
| [2311] header('Access-Control-Allow-Headers: '.$allowed_headers);
|
| [2312] header('Access-Control-Allow-Methods: '.$allowed_methods);
|
| [2317] // Store the HTTP Origin header
|
| [2327] header('Access-Control-Allow-Origin: '.$origin);
|
| [2328] header('Access-Control-Allow-Headers: '.$allowed_headers);
|
| [2329] header('Access-Control-Allow-Methods: '.$allowed_methods);
|
| [2336] foreach ($this->config->item('forced_cors_headers') as $header => $value)
|
| [2338] header($header . ': ' . $value);
|
- Source File : i_academy/application/libraries/Stripe/lib/ApiRequestor.php
| [325] // X-Stripe-Client-User-Agent header via the optional getUserAgentInfo()
|
| [366] foreach ($combinedHeaders as $header => $value) {
|
| [367] $rawHeaders[] = $header . ': ' . $value;
|
- Source File : i_academy/application/libraries/Stripe/lib/BaseStripeClient.php
| [33] * will automatically use the {@code Stripe-Account} header with that account ID.
|
| [35] * will include the {@code Stripe-Version} header with that API version.
|
- Source File : i_academy/application/libraries/Stripe/lib/Order.php
| [19] * @property null|int $application_fee A fee in cents that will be applied ..
|
- Source File : i_academy/application/libraries/Stripe/lib/Webhook.php
| [16] * @param string $sigHeader the contents of the signature header sent by
|
| [19] * @param int $tolerance maximum difference allowed between the header's
|
- Source File : i_academy/application/libraries/Stripe/lib/WebhookSignature.php
| [10] * Verifies the signature header sent by Stripe. Throws an
|
| [15] * @param string $header the contents of the signature header sent by
|
| [18] * @param int $tolerance maximum difference allowed between the header's
|
| [25] public static function verifyHeader($payload, $header, $secret, $tolerance = null)
|
| [27] // Extract timestamp and signatures from header
|
| [28] $timestamp = self::getTimestamp($header);
|
| [29] $signatures = self::getSignatures($header, self::EXPECTED_SCHEME);
|
| [32] 'Unable to extract timestamp and signatures from header',
|
| [34] $header
|
| [41] $header
|
| [46] // header
|
| [61] $header
|
| [70] $header
|
| [78] * Extracts the timestamp in a signature header.
|
| [80] * @param string $header the signature header
|
| [82] * @return int the timestamp contained in the header, or -1 if no valid
|
| [85] private static function getTimestamp($header)
|
| [87] $items = \explode(',', $header);
|
| [104] * Extracts the signatures matching a given scheme in a signature header.
|
| [106] * @param string $header the signature header
|
| [111] private static function getSignatures($header, $scheme)
|
| [114] $items = \explode(',', $header);
|
- Source File : i_academy/application/libraries/Stripe/lib/Exception/SignatureVerificationException.php
| [19] * @param null|string $sigHeader the `Stripe-Signature` HTTP header
|
| [56] * Gets the `Stripe-Signature` HTTP header.
|
| [66] * Sets the `Stripe-Signature` HTTP header.
|
- Source File : i_academy/application/libraries/Stripe/lib/HttpClient/CurlClient.php
| [237] // add an Idempotency-Key header
|
| [246] // header, which gives the server a chance to respond with an error
|
| [255] // sending an empty `Expect:` header.
|
| [437] // Note that we expect the stripe-should-retry header to be false
|
| [529] * Checks if a list of headers contains a specific header name.
|
| [538] foreach ($headers as $header) {
|
| [539] if (0 === \strncasecmp($header, "{$name}: ", \strlen($name) + 2)) {
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/EventService.php
| [12] * <code>Stripe-Version</code> header).
|
- Source File : i_academy/application/libraries/Stripe/lib/Util/CaseInsensitiveArray.php
| [9] * Each header field consists of a name followed by a colon (":") and the field value. Field names
|
- Source File : i_academy/application/models/Crud_model.php
| [2002] //setting the header for the rest of the api
|
| [2004] $header = array();
|
| [2005] $header[] = 'Content-length: 0';
|
| [2006] $header[] = 'Content-type: application/json; charset=utf-8';
|
| [2007] $header[] = 'Authorization: ' . $bearer;
|
| [2012] curl_setopt($ch_verify, CURLOPT_HTTPHEADER, $header);
|
| [2356] //setting the header for the rest of the api
|
| [2358] $header = array();
|
| [2359] $header[] = 'Content-length: 0';
|
| [2360] $header[] = 'Content-type: application/json; charset=utf-8';
|
| [2361] $header[] = 'Authorization: ' . $bearer;
|
| [2366] curl_setopt($ch_verify, CURLOPT_HTTPHEADER, $header);
|
| [2760] 'header' => "Content-Type: application/x-www-form-urlencoded\r\n" .
|
- Source File : i_academy/application/models/Video_model.php
| [66] 'header' => 'Authorization: Bearer '.$vimeo_api_key
|
| [72] //header("Content-Type: text/plain");
|
| [91] //header("Content-Type: text/plain");
|
- Source File : i_academy/application/views/backend/header.php
| [78] <div class=" dropdown-header noti-title">
|
- Source File : i_academy/application/views/backend/index.php
| [19] <?php include 'header.php'; ?>
|
- Source File : i_academy/application/views/backend/modal.php
| [2]function showAjaxModal(url, header)
|
| [16] jQuery('#scrollable-modal .modal-title').html(header);
|
| [20]function showLargeModal(url, header)
|
| [34] jQuery('#large-modal .modal-title').html(header);
|
| [44] <div class="modal-header">
|
| [59] <div class="modal-header">
|
- Source File : i_academy/application/views/backend/admin/addon_add.php
| [23] <h4 class="mb-3 header-title"><?php echo get_phrase('upload_addon_file') . ' (' . get_phrase('zip_file') . ') '; ?></h4>
|
- Source File : i_academy/application/views/backend/admin/addon_update.php
| [23] <h4 class="mb-3 header-title"><?php echo get_phrase('upload_addon_file').' ('.get_phrase('zip_file').') ';?></h4>
|
- Source File : i_academy/application/views/backend/admin/admins.php
| [17] <h4 class="mb-3 header-title"><?php echo get_phrase('admins'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/admin_add.php
| [17] <h4 class="header-title mb-3"><?php echo get_phrase('admin_add_form'); ?></h4>
|
| [21] <ul class="nav nav-pills nav-justified form-wizard-header mb-3">
|
- Source File : i_academy/application/views/backend/admin/admin_edit.php
| [21] <h4 class="header-title mb-3"><?php echo get_phrase('admin_edit_form'); ?></h4>
|
| [25] <ul class="nav nav-pills nav-justified form-wizard-header mb-3">
|
- Source File : i_academy/application/views/backend/admin/admin_permission.php
| [26] <h4 class="header-title">
|
- Source File : i_academy/application/views/backend/admin/admin_revenue.php
| [15] <h4 class="mb-3 header-title"><?php echo get_phrase('admin_revenue'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/application_list.php
| [15] <h4 class="mb-3 header-title"><?php echo get_phrase('list_of_applications'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/available_addon.php
| [16] <h4 class="mb-3 header-title"><?php echo get_phrase('all_available_addon'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/category_add.php
| [17] <h4 class="mb-3 header-title"><?php echo get_phrase('category_add_form'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/category_edit.php
| [19] <h4 class="mb-3 header-title"><?php echo get_phrase('update_category_form'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/coupons.php
| [17] <h4 class="mb-3 header-title"><?php echo get_phrase('coupons'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/coupon_add.php
| [19] <h4 class="mb-3 header-title"><?php echo get_phrase('coupon_add_form'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/coupon_edit.php
| [19] <h4 class="mb-3 header-title"><?php echo get_phrase('coupon_edit_form'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/courses-server-side.php
| [74] <h4 class="mb-3 header-title"><?php echo get_phrase('course_list'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/courses.php
| [74] <h4 class="mb-3 header-title"><?php echo get_phrase('course_list'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/course_add.php
| [18] <h4 class="header-title my-1"><?php echo get_phrase('course_adding_form'); ?></h4>
|
| [30] <ul class="nav nav-pills nav-justified form-wizard-header">
|
- Source File : i_academy/application/views/backend/admin/course_edit.php
| [20] <h4 class="header-title my-1"><?php echo get_phrase('course_manager'); ?></h4>
|
| [33] <ul class="nav nav-pills nav-justified form-wizard-header">
|
- Source File : i_academy/application/views/backend/admin/dashboard.php
| [23] <h4 class="header-title mb-4"><?php echo get_phrase('admin_revenue_this_year'); ?></h4>
|
| [95] <h4 class="header-title mb-4"><?php echo get_phrase('course_overview'); ?></h4>
|
| [121] <h4 class="header-title mb-3"><?php echo get_phrase('requested_withdrawal'); ?>
|
- Source File : i_academy/application/views/backend/admin/dragula.php
| [5] <h4 class="header-title">Move stuff between containers</h4>
|
- Source File : i_academy/application/views/backend/admin/enrol_history.php
| [15] <h4 class="mb-3 header-title"><?php echo get_phrase('enrol_histories'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/enrol_student.php
| [17] <h4 class="mb-3 header-title"><?php echo get_phrase('enrolment_form'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/frontend_settings.php
| [18] <h4 class="mb-3 header-title"><?php echo get_phrase('website_settings');?></h4>
|
| [72] <h4 class="mb-3 header-title"><?php echo get_phrase('recaptcha_settings');?></h4>
|
| [110] <h4 class="mb-3 header-title"><?php echo get_phrase('update_banner_image');?></h4>
|
| [138] <h4 class="mb-3 header-title"><?php echo get_phrase('update_light_logo');?></h4>
|
| [164] <h4 class="mb-3 header-title"><?php echo get_phrase('update_dark_logo');?></h4>
|
| [190] <h4 class="mb-3 header-title"><?php echo get_phrase('update_small_logo');?></h4>
|
| [216] <h4 class="mb-3 header-title"><?php echo get_phrase('update_favicon');?></h4>
|
- Source File : i_academy/application/views/backend/admin/instructors.php
| [17] <h4 class="mb-3 header-title"><?php echo get_phrase('instructors'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/instructor_add.php
| [15] <h4 class="header-title mb-3"><?php echo get_phrase('instructor_add_form'); ?></h4>
|
| [19] <ul class="nav nav-pills nav-justified form-wizard-header mb-3">
|
- Source File : i_academy/application/views/backend/admin/instructor_edit.php
| [19] <h4 class="header-title mb-3"><?php echo get_phrase('instructor_edit_form'); ?></h4>
|
| [23] <ul class="nav nav-pills nav-justified form-wizard-header mb-3">
|
- Source File : i_academy/application/views/backend/admin/instructor_payout.php
| [15] <h4 class="mb-3 header-title"><?php echo get_phrase('list_of_payouts'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/instructor_revenue.php
| [15] <h4 class="mb-3 header-title"><?php echo get_phrase('instructor_revenue'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/instructor_settings.php
| [15] <h4 class="mb-3 header-title"><?php echo get_phrase('public_instructor_settings');?></h4>
|
| [45] <h4 class="mb-3 header-title"><?php echo get_phrase('instructor_commission_settings');?></h4>
|
- Source File : i_academy/application/views/backend/admin/lesson_types.php
| [28]<h5 class="header-title mt-5 mt-sm-0"><?php echo get_phrase('select_lesson_type') ?></h5>
|
- Source File : i_academy/application/views/backend/admin/logs.php
| [16] <h4 class="mb-3 header-title"><?php echo "Logs"; ?></h4>
|
- Source File : i_academy/application/views/backend/admin/manage_language.php
| [47] <div class="card-header">
|
- Source File : i_academy/application/views/backend/admin/manage_profile.php
| [15] <h4 class="header-title mb-3"><?php echo get_phrase('basic_info'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/message_read.php
| [10] <h4 class="header-title mb-3">Chat</h4>
|
- Source File : i_academy/application/views/backend/admin/password_resets.php
| [17] <h4 class="mb-3 header-title"><?php echo get_phrase('student'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/payment_settings.php
| [24] <h4 class="header-title"><p><?php echo get_phrase('system_currency_settings'); ?></p></h4>
|
| [63] <h4 class="header-title"><p><?php echo get_phrase('setup_paypal_settings'); ?></p></h4>
|
| [136] <h4 class="header-title"><p><?php echo get_phrase('setup_stripe_settings'); ?></p></h4>
|
- Source File : i_academy/application/views/backend/admin/smtp_settings.php
| [16] <h4 class="mb-3 header-title"><?php echo get_phrase('smtp_settings');?></h4>
|
- Source File : i_academy/application/views/backend/admin/system_settings.php
| [16] <h4 class="mb-3 header-title"><?php echo get_phrase('system_settings');?></h4>
|
| [116] <h4 class="mb-3 header-title"><?php echo get_phrase('update_product');?></h4>
|
- Source File : i_academy/application/views/backend/admin/theme_settings.php
| [32] <h4 class="header-title mb-3"><?php echo get_phrase('installed_themes'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/users.php
| [17] <h4 class="mb-3 header-title"><?php echo get_phrase('student'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/user_add.php
| [15] <h4 class="header-title mb-3"><?php echo get_phrase('student_add_form'); ?></h4>
|
| [19] <ul class="nav nav-pills nav-justified form-wizard-header mb-3">
|
- Source File : i_academy/application/views/backend/admin/user_edit.php
| [19] <h4 class="header-title mb-3"><?php echo get_phrase('student_edit_form'); ?></h4>
|
| [23] <ul class="nav nav-pills nav-justified form-wizard-header mb-3">
|
- Source File : i_academy/application/views/backend/user/application_form.php
| [1]<h4 class="header-title mb-3"><?php echo get_phrase('instructor_application_form'); ?></h4>
|
- Source File : i_academy/application/views/backend/user/application_list.php
| [1]<h4 class="mb-3 header-title"><?php echo get_phrase('your_application'); ?></h4>
|
- Source File : i_academy/application/views/backend/user/courses-server-side.php
| [101] <h4 class="mb-3 header-title"><?php echo get_phrase('course_list'); ?></h4>
|
- Source File : i_academy/application/views/backend/user/courses.php
| [101] <h4 class="mb-3 header-title"><?php echo get_phrase('course_list'); ?></h4>
|
- Source File : i_academy/application/views/backend/user/course_add.php
| [18] <h4 class="header-title my-1"><?php echo get_phrase('course_adding_form'); ?></h4>
|
| [30] <ul class="nav nav-pills nav-justified form-wizard-header">
|
- Source File : i_academy/application/views/backend/user/course_edit.php
| [20] <h4 class="header-title my-1"><?php echo get_phrase('course_manager'); ?></h4>
|
| [33] <ul class="nav nav-pills nav-justified form-wizard-header">
|
- Source File : i_academy/application/views/backend/user/dashboard.php
| [28] <h4 class="header-title mb-4"><?php echo get_phrase('instructor_revenue'); ?></h4>
|
| [97] <h4 class="header-title mb-4"><?php echo get_phrase('course_overview'); ?></h4>
|
- Source File : i_academy/application/views/backend/user/lesson_types.php
| [28]<h5 class="header-title mt-5 mt-sm-0"><?php echo get_phrase('select_lesson_type') ?></h5>
|
- Source File : i_academy/application/views/backend/user/payment_settings.php
| [22] <h4 class="header-title"><p><?php echo get_phrase('setup_paypal_settings'); ?></p></h4>
|
| [52] <h4 class="header-title"><p><?php echo get_phrase('setup_stripe_settings'); ?></p></h4>
|
- Source File : i_academy/application/views/backend/user/payout_report.php
| [67] <h4 class="mb-3 header-title"><?php echo get_phrase('payout_report'); ?></h4>
|
- Source File : i_academy/application/views/backend/user/sales_report.php
| [16] <h4 class="mb-3 header-title"><?php echo get_phrase('sales_report'); ?></h4>
|
- Source File : i_academy/application/views/backend/user/users.php
| [17] <h4 class="mb-3 header-title"><?php echo get_phrase('student'); ?></h4>
|
- Source File : i_academy/application/views/backend/user/user_add.php
| [15] <h4 class="header-title mb-3"><?php echo get_phrase('student_add_form'); ?></h4>
|
| [19] <ul class="nav nav-pills nav-justified form-wizard-header mb-3">
|
- Source File : i_academy/application/views/backend/user/user_edit.php
| [19] <h4 class="header-title mb-3"><?php echo get_phrase('student_edit_form'); ?></h4>
|
| [23] <ul class="nav nav-pills nav-justified form-wizard-header mb-3">
|
- Source File : i_academy/application/views/frontend/default/404.php
| [1]<section class="category-header-area">
|
- Source File : i_academy/application/views/frontend/default/about_us.php
| [1]<section class="category-header-area">
|
- Source File : i_academy/application/views/frontend/default/admin_login.php
| [4]<section class="category-header-area">
|
- Source File : i_academy/application/views/frontend/default/all_category_page.php
| [6]<section class="category-header-area">
|
- Source File : i_academy/application/views/frontend/default/blog.php
| [1]<section class="category-header-area">
|
- Source File : i_academy/application/views/frontend/default/compare.php
| [41]<section class="category-header-area">
|
- Source File : i_academy/application/views/frontend/default/cookie_policy.php
| [1]<section class="category-header-area">
|
- Source File : i_academy/application/views/frontend/default/courses_page.php
| [18]<section class="category-header-area">
|
| [60] <div class="card-header filter-card-header" id="headingOne" data-toggle="collapse" data-target="#collapseFilter" aria-expanded="true" aria-controls="collapseFilter">
|
- Source File : i_academy/application/views/frontend/default/course_page.php
| [5]<section class="course-header-area">
|
| [9] <div class="course-header-wrap">
|
| [536] <div class="modal-header">
|
- Source File : i_academy/application/views/frontend/default/course_search_page.php
| [1]<section class="category-header-area">
|
- Source File : i_academy/application/views/frontend/default/create_course.php
| [1]<section class="category-header-area" style="background-color: #505763;">
|
- Source File : i_academy/application/views/frontend/default/footer.php
| [64] <div class="modal-header">
|
- Source File : i_academy/application/views/frontend/default/inner_messages.php
| [16] <div class="message-header">
|
- Source File : i_academy/application/views/frontend/default/instructor_dashboard.php
| [4]<section class="page-header-area my-course-area">
|
- Source File : i_academy/application/views/frontend/default/instructor_page.php
| [6]<section class="instructor-header-area">
|
- Source File : i_academy/application/views/frontend/default/lessons.php
| [17] <div class="card-header" id="<?php echo 'heading-'.$section['id']; ?>">
|
- Source File : i_academy/application/views/frontend/default/lesson_edit.php
| [8]<section class="page-header-area my-course-area">
|
- Source File : i_academy/application/views/frontend/default/logged_in_header.php
| [10] <ul class="mobile-header-buttons">
|
- Source File : i_academy/application/views/frontend/default/logged_out_header.php
| [7] <ul class="mobile-header-buttons">
|
- Source File : i_academy/application/views/frontend/default/login.php
| [4]<section class="category-header-area">
|
- Source File : i_academy/application/views/frontend/default/manage_course_details.php
| [4]<section class="page-header-area my-course-area">
|
- Source File : i_academy/application/views/frontend/default/modal.php
| [25] <div class="modal-header">
|
| [53] <div class="modal-header">
|
- Source File : i_academy/application/views/frontend/default/my_messages.php
| [63] <div class="new-message-details"><div class="message-header">
|
- Source File : i_academy/application/views/frontend/default/my_notifications.php
| [1]<section class="page-header-area">
|
- Source File : i_academy/application/views/frontend/default/privacy_policy.php
| [1]<section class="category-header-area">
|
- Source File : i_academy/application/views/frontend/default/profile_menus.php
| [1]<section class="page-header-area my-course-area">
|
- Source File : i_academy/application/views/frontend/default/purchase_history.php
| [13] <li class="purchase-history-list-header">
|
- Source File : i_academy/application/views/frontend/default/request_API_token.php
| [4]<section class="category-header-area">
|
- Source File : i_academy/application/views/frontend/default/reset_password.php
| [4]<section class="category-header-area">
|
- Source File : i_academy/application/views/frontend/default/shopping_cart.php
| [1]<section class="page-header-area">
|
- Source File : i_academy/application/views/frontend/default/sign_up.php
| [5]<section class="category-header-area">
|
- Source File : i_academy/application/views/frontend/default/sign_up_password.php
| [5]<section class="category-header-area">
|
- Source File : i_academy/application/views/frontend/default/terms_and_condition.php
| [1]<section class="category-header-area">
|
- Source File : i_academy/application/views/frontend/default/update_user_photo.php
| [1]<section class="page-header-area my-course-area">
|
- Source File : i_academy/application/views/frontend/default/users.php
| [17] <h4 class="mb-3 header-title"><?php echo get_phrase('student'); ?></h4>
|
- Source File : i_academy/application/views/frontend/default/user_credentials.php
| [1]<section class="page-header-area my-course-area">
|
- Source File : i_academy/application/views/frontend/default/verification_code.php
| [1]<section class="category-header-area">
|
- Source File : i_academy/application/views/install/index.php
| [19] <header class="navbar navbar-fixed-top" style="min-height: 80px; background: linear-gradient(135deg,#0F2027 0,#2C5364 60%) !important;">
|
| [31] </header>
|
- Source File : i_academy/application/views/lessons/course_content_sidebar.php
| [40] <div class="card-header course_card" id="<?php echo 'heading-'.$section['id']; ?>">
|
- Source File : i_academy/application/views/lessons/quiz_view.php
| [5] <div class="" id="quiz-header">
|
| [53] $('#quiz-header').hide();
|
- Source File : i_academy/application/views/mobile/payment_gateway.php
| [7].payment-header-text{
|
| [35].payment-header{
|
| [166] <p class="pb-2 payment-header"><?php echo get_phrase('payment'); ?> <?php echo get_phrase('gateway'); ?></p>
|
| [252] <p class="pb-2 payment-header"><?php echo get_phrase('order'); ?> <?php echo get_phrase('summary'); ?></p>
|
- Source File : i_academy/application/views/mobile/payment_model.php
| [22] <div class="modal-header">
|
- Source File : i_academy/application/views/mobile/quiz.php
| [9] <div class="p-2" id="quiz-header">
|
| [77] $('#quiz-header').hide();
|
- Source File : i_academy/application/views/payment/payment_gateway.php
| [7].payment-header-text {
|
| [36].payment-header {
|
| [177] <span class="payment-header-text float-left"><b><?php echo get_phrase('make_payment'); ?></b></span>
|
| [188] <p class="pb-2 payment-header"><?php echo get_phrase('select_payment_gateway'); ?></p>
|
| [275] <p class="pb-2 payment-header"><?php echo get_phrase('order'); ?> <?php echo get_phrase('summary'); ?></p>
|
- Source File : i_academy/system/core/Common.php
| [564] header('Status: '.$code.' '.$text, TRUE);
|
| [570] header($server_protocol.' '.$code.' '.$text, TRUE, $code);
|
| [599] // When an error occurred, set the status header to '500 Internal Server Error'
|
- Source File : i_academy/system/core/Input.php
| [517] foreach (array('HTTP_X_FORWARDED_FOR', 'HTTP_CLIENT_IP', 'HTTP_X_CLIENT_IP', 'HTTP_X_CLUSTER_CLIENT_IP') as $header)
|
| [519] if (($spoof = $this->server($header)) !== NULL)
|
| [838] // If header is already defined, return it immediately
|
| [855] if (sscanf($key, 'HTTP_%s', $header) === 1)
|
| [858] $header = str_replace('_', ' ', strtolower($header));
|
| [859] $header = str_replace(' ', '-', ucwords($header));
|
| [861] $this->headers[$header] = $_SERVER[$key];
|
| [878] * @return string|null The requested header on success or NULL on failure
|
| [910] * Test to see if a request contains the HTTP_X_REQUESTED_WITH header.
|
- Source File : i_academy/system/core/Output.php
| [207] * Lets you set a server header which will be sent with the final output.
|
| [212] * @param string $header Header
|
| [213] * @param bool $replace Whether to replace the old header value, if already set
|
| [216] public function set_header($header, $replace = TRUE)
|
| [219] // but it will not modify the content-length header to compensate for
|
| [222] if ($this->_zlib_oc && strncasecmp($header, 'content-length', 14) === 0)
|
| [227] $this->headers[] = array($header, $replace);
|
| [265] $header = 'Content-Type: '.$mime_type
|
| [268] $this->headers[] = array($header, TRUE);
|
| [297] * @param string $header
|
| [300] public function get_header($header)
|
| [309] if (empty($headers) OR empty($header))
|
| [314] // Count backwards, in order to get the last matching header
|
| [317] if (strncasecmp($header, $headers[$c], $l = self::strlen($header)) === 0)
|
| [475] foreach ($this->headers as $header)
|
| [477] @header($header[0], $header[1]);
|
| [492] header('Content-Encoding: gzip');
|
| [493] header('Content-Length: '.self::strlen($output));
|
| [713] foreach ($cache_info['headers'] as $header)
|
| [715] $this->set_header($header[0], $header[1]);
|
| [797] header('Pragma: public');
|
| [798] header('Cache-Control: max-age='.$max_age.', public');
|
| [799] header('Expires: '.gmdate('D, d M Y H:i:s', $expiration).' GMT');
|
| [800] header('Last-modified: '.gmdate('D, d M Y H:i:s', $last_modified).' GMT');
|
- Source File : i_academy/system/database/drivers/mysql/mysql_driver.php
| [263] return mysql_query($this->_prep_query($sql), $this->conn_id);
|
- Source File : i_academy/system/helpers/download_helper.php
| [136] header('Content-Type: '.$mime);
|
| [137] header('Content-Disposition: attachment; filename="'.$filename.'"');
|
| [138] header('Expires: 0');
|
| [139] header('Content-Transfer-Encoding: binary');
|
| [140] header('Content-Length: '.$filesize);
|
| [141] header('Cache-Control: private, no-transform, no-store, must-revalidate');
|
- Source File : i_academy/system/helpers/url_helper.php
| [561] header('Refresh:0;url='.$uri);
|
| [564] header('Location: '.$uri, TRUE, $code);
|
- Source File : i_academy/system/language/english/email_lang.php
| [44]$lang['email_no_from'] = 'Cannot send mail with no "From" header.';
|
- Source File : i_academy/system/libraries/Email.php
| [167] * X-Priority header value.
|
| [236] * Subject header
|
| [285] * Whether to send a Reply-To header
|
| [365] * Actual values to send with the X-Priority header
|
| [774] public function set_header($header, $value)
|
| [776] $this->_headers[$header] = str_replace(array("\n", "\r"), '', $value);
|
| [1630] // iconv_mime_encode() will always put a header field name.
|
| [1669] // End the header
|
- Source File : i_academy/system/libraries/Image_lib.php
| [1554] header('Content-Disposition: filename='.$this->source_image.';');
|
| [1555] header('Content-Type: '.$this->mime_type);
|
| [1556] header('Content-Transfer-Encoding: binary');
|
| [1557] header('Last-Modified: '.gmdate('D, d M Y H:i:s', time()).' GMT');
|
- Source File : i_academy/system/libraries/Profiler.php
| [443] * Compile header information
|
| [458] foreach (array('HTTP_ACCEPT', 'HTTP_USER_AGENT', 'HTTP_CONNECTION', 'SERV.. [460] $val = isset($_SERVER[$header]) ? htmlspecialchars($_SERVER[$header], ENT_QUOTES, config_item('charset')) : '';
|
| [462] .$header.' </td><td style="width:50%;padding:5px;color:#000;background-color:#ddd;">'.$val."</td></tr>\n";
|
- Source File : i_academy/system/libraries/Table.php
| [68] * Whether or not to automatically create the table header
|
- Source File : i_academy/system/libraries/Xmlrpc.php
| [1219] foreach ($this->xh[$pname]['headers'] as $header)
|
| [1221] echo $header."\n";
|
- Source File : i_academy/system/libraries/Xmlrpcs.php
| [182] header('Content-Type: text/xml');
|
| [183] header('Content-Length: '.strlen($payload));
|
- Source File : i_academy/system/libraries/Zip.php
| [86] * relative offset of local header
|
| [215] .pack('V', $this->offset) // relative offset of local header
|
| [297] .pack('V', $this->offset) // relative offset of local header
|
[+] Keyword Searched : Serialisation Issue: unserialize|serialize
- Source File : i_academy/application/config/rest.php
| [28]| 'serialized': Uses serialize()
|
- Source File : i_academy/application/controllers/Login.php
| [221] $sdata = serialize($data);
|
| [229] $usdata = unserialize($sdata);
|
- Source File : i_academy/application/libraries/Format.php
| [444] return serialize($data);
|
| [513] * @param string $data Data to unserialize
|
| [518] return unserialize(trim($data));
|
- Source File : i_academy/application/libraries/REST_Controller.php
| [1188] 'params' => $this->_args ? ($this->config->item('rest_logs_json_params') === TRUE ? json_encode($this->_args) : serialize($this->_args)) : NULL,
|
- Source File : i_academy/application/views/backend/admin/course_add_shortcut.php
| [140] data: form.serialize(), // serializes the form's elements.
|
- Source File : i_academy/application/views/backend/admin/question_add.php
| [35] data: $('form#mcq_form').serialize(),
|
- Source File : i_academy/application/views/backend/admin/question_edit.php
| [62] data: $('form#mcq_form').serialize(),
|
- Source File : i_academy/application/views/backend/admin/shortcut_add_student.php
| [31] data: form.serialize(), // serializes the form's elements.
|
- Source File : i_academy/application/views/backend/admin/shortcut_enrol_student.php
| [41] data: form.serialize(), // serializes the form's elements.
|
- Source File : i_academy/application/views/backend/user/course_add_shortcut.php
| [140] data: form.serialize(), // serializes the form's elements.
|
- Source File : i_academy/application/views/backend/user/question_add.php
| [35] data: $('form#mcq_form').serialize(),
|
- Source File : i_academy/application/views/backend/user/question_edit.php
| [62] data: $('form#mcq_form').serialize(),
|
- Source File : i_academy/application/views/lessons/quiz_view.php
| [65] data: $('form#quiz_form').serialize(),
|
- Source File : i_academy/application/views/mobile/quiz.php
| [94] data: $('form#quiz_form').serialize(),
|
- Source File : i_academy/system/core/Output.php
| [612] $cache_info = serialize(array(
|
| [695] $cache_info = unserialize($match[1]);
|
- Source File : i_academy/system/database/DB_cache.php
| [151] return unserialize($cachedata);
|
| [175] if (write_file($dir_path.$filename, serialize($object)) === FALSE)
|
- Source File : i_academy/system/database/DB_driver.php
| [725] // Is query caching enabled? If so, we'll serialize the
|
- Source File : i_academy/system/libraries/Cart.php
| [250] $rowid = md5($items['id'].serialize($items['options']));
|
- Source File : i_academy/system/libraries/Cache/drivers/Cache_file.php
| [104] if (write_file($this->_cache_path.$id, serialize($contents)))
|
| [224] $data = unserialize(file_get_contents($this->_cache_path.$id));
|
| [275] $data = unserialize(file_get_contents($this->_cache_path.$id));
|
- Source File : i_academy/system/libraries/Cache/drivers/Cache_redis.php
| [158] return unserialize($value);
|
| [185] $data = serialize($data);
|
[+] Keyword Searched : PHP_SELF XSS
- Source File : i_academy/system/core/Input.php
| [732] $_SERVER['PHP_SELF'] = strip_tags($_SERVER['PHP_SELF']);
|
[+] Keyword Searched : SELECT [*] FROM [anytable] WHERE
- Source File : i_academy/system/database/drivers/mssql/mssql_forge.php
| [56] protected $_create_table_if = "IF NOT EXISTS (SELECT * FROM sysobjects WHERE ID = object_id(N'%s') AND OBJECTPROPERTY(id, N'IsUserTable') = 1)\nCREATE TABLE";
|
| [63] protected $_drop_table_if = "IF EXISTS (SELECT * FROM sysobjects WHERE ID = object_id(N'%s') AND OBJECTPROPERTY(id, N'IsUserTable') = 1)\nDROP TABLE";
|
- Source File : i_academy/system/database/drivers/odbc/odbc_driver.php
| [358] $sql = "SELECT table_name FROM information_schema.tables WHERE table_schema = '".$this->schema."'";
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_dblib_forge.php
| [54] protected $_create_table_if = "IF NOT EXISTS (SELECT * FROM sysobjects WHERE ID = object_id(N'%s') AND OBJECTPROPERTY(id, N'IsUserTable') = 1)\nCREATE TABLE";
|
| [61] protected $_drop_table_if = "IF EXISTS (SELECT * FROM sysobjects WHERE ID = object_id(N'%s') AND OBJECTPROPERTY(id, N'IsUserTable') = 1)\nDROP TABLE";
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_firebird_driver.php
| [119] $sql = 'SELECT "RDB$RELATION_NAME" FROM "RDB$RELATIONS" WHERE "RDB$RELATION_NAME" NOT LIKE \'RDB$%\' AND "RDB$RELATION_NAME" NOT LIKE \'MON$%\'';
|
| [142] return 'SELECT "RDB$FIELD_NAME" FROM "RDB$RELATION_FIELDS" WHERE "RDB$RELATION_NAME" = '.$this->escape($table);
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_ibm_driver.php
| [240] ? 'SELECT * FROM ('.$sql.') WHERE rownum > '.$this->qb_offset
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_odbc_driver.php
| [204] $sql = "SELECT table_name FROM information_schema.tables WHERE table_schema = '".$this->schema."'";
|
| [227] return 'SELECT column_name FROM information_schema.columns WHERE table_name = '.$this->escape($table);
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_pgsql_driver.php
| [232] $sql = 'SELECT "table_name" FROM "information_schema"."tables" WHERE "table_schema" = \''.$this->schema."'";
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_sqlite_driver.php
| [110] $sql = 'SELECT "NAME" FROM "SQLITE_MASTER" WHERE "TYPE" = \'table\'';
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_sqlsrv_forge.php
| [54] protected $_create_table_if = "IF NOT EXISTS (SELECT * FROM sysobjects WHERE ID = object_id(N'%s') AND OBJECTPROPERTY(id, N'IsUserTable') = 1)\nCREATE TABLE";
|
| [61] protected $_drop_table_if = "IF EXISTS (SELECT * FROM sysobjects WHERE ID = object_id(N'%s') AND OBJECTPROPERTY(id, N'IsUserTable') = 1)\nDROP TABLE";
|
- Source File : i_academy/system/database/drivers/postgre/postgre_driver.php
| [405] $sql = 'SELECT "table_name" FROM "information_schema"."tables" WHERE "table_schema" = \''.$this->schema."'";
|
- Source File : i_academy/system/database/drivers/sqlite/sqlite_driver.php
| [205] $sql = "SELECT name FROM sqlite_master WHERE type='table'";
|
- Source File : i_academy/system/database/drivers/sqlite3/sqlite3_driver.php
| [217] return 'SELECT "NAME" FROM "SQLITE_MASTER" WHERE "TYPE" = \'table\''
|
- Source File : i_academy/system/database/drivers/sqlsrv/sqlsrv_forge.php
| [54] protected $_create_table_if = "IF NOT EXISTS (SELECT * FROM sysobjects WHERE ID = object_id(N'%s') AND OBJECTPROPERTY(id, N'IsUserTable') = 1)\nCREATE TABLE";
|
| [61] protected $_drop_table_if = "IF EXISTS (SELECT * FROM sysobjects WHERE ID = object_id(N'%s') AND OBJECTPROPERTY(id, N'IsUserTable') = 1)\nDROP TABLE";
|
[+] Keyword Searched : Insecure Mitigation: SQL Injection (mysql_real_escape_string)
- Source File : i_academy/application/config/database.php
| [37]| There is an incompatibility in PHP with mysql_real_escape_string() which
|
- Source File : i_academy/system/database/drivers/mysql/mysql_driver.php
| [347] return mysql_real_escape_string($str, $this->conn_id);
|
[+] Keyword Searched : Password
- Source File : i_academy/application/config/database.php
| [20]| ['password'] The password used to connect to the database
|
- Source File : i_academy/application/config/rest.php
| [92]| Name of the password protected REST API displayed on login dialogs
|
| [210]| Array of usernames and passwords for login, if ldap is configured this is ignored
|
- Source File : i_academy/application/controllers/Admin.php
| [1034] /******MANAGE OWN PROFILE AND CHANGE PASSWORD***/
|
| [1648] $page_data['page_title'] = 'All Password Resets';
|
- Source File : i_academy/application/controllers/Api.php
- Source File : i_academy/application/controllers/Checker.php
| [464] // verify if old password matches
|
| [660] // forgot password link
|
| [667] //resetting user password here
|
| [717] // send new password to user email
|
| [890] * For pubic calls: login, forget password.
|
- Source File : i_academy/application/controllers/Home.php
| [1064] $this->session->set_flashdata('flash_message', "Your Password Reset Successful!");
|
| [1082] $page_data['page_title'] = 'Reset Password';
|
- Source File : i_academy/application/controllers/Install.php
| [80] recheck hostname, username, password and try again with correct information';
|
- Source File : i_academy/application/controllers/Login.php
| [80] log_message('error', 'Invalid Login attempt with email = '.$email.' and password = '.$password);
|
| [362] //resetting user password here
|
| [382] // send new password to user email
|
- Source File : i_academy/application/libraries/REST_Controller.php
| [1816] * @param string $password The password to validate
|
| [1911] * @param string $password The password to validate
|
| [1950] * @param bool|string $password The user's password
|
| [1966] // For digest we do not have a password passed as argument
|
| [2055] // If the authentication header is set as basic, then extract the username and password from
|
| [2095] // The $_SESSION['error_prompted'] variable is used to ask the password
|
- Source File : i_academy/application/logs/log-2022-08-05.php
| [8]ERROR - 2022-08-05 06:33:00 --> Invalid Login attempt with email = soumyasunani@gmail.com and password = Academy@2022
|
| [71]ERROR - 2022-08-05 14:30:43 --> Invalid Login attempt with email = tempadmin1@gmail.com and password = tempadmin123
|
- Source File : i_academy/application/models/Email_model.php
| [23] function password_reset_email($url = '' , $email = '') {
|
| [30] $email_data['message'] = 'You have requested for the password change. Please click the link to reset your password : <p style="cursor: pointer;">'.$url.'</p><br />';
|
- Source File : i_academy/application/views/frontend/default/reset_password.php
| [19] <?php echo 'Reset Password'; ?>
|
| [33] <div class="title"><?php echo 'Set New Password'; ?></div>
|
| [34] <div class="subtitle"><?php echo 'Please Enter New Password'; ?>.</div>
|
| [40] <label for="password"><span class="input-field-icon"><i class="fas fa-lock"></i></span> <?php echo 'New Password' ?>:</label>
|
| [44] <label for="confirm_password"><span class="input-field-icon"><i class="fas fa-lock"></i></span> <?php echo 'Confirm Password' ?>:</label>
|
| [69] var password = $('#password').val();
|
| [72] alert('Confirm Password Mismatch!')
|
- Source File : i_academy/application/views/install/main/finalizing_setup.php
| [18] password. Remember the login credentials which you will need later on for signing into your account. After this step,
|
| [75] Admin login password
|
- Source File : i_academy/application/views/install/main/step0.php
| [18] <li>Database Password</li>
|
- Source File : i_academy/application/views/install/main/step3.php
| [67] Your database Password
|
- Source File : i_academy/application/views/install/main/success.php
| [24] <td style="padding: 12px;">Your chosen password</td>
|
- Source File : i_academy/system/core/compat/hash.php
| [181] // Pre-hash password inputs longer than the algorithm's block size
|
- Source File : i_academy/system/core/compat/password.php
| [61]defined('PASSWORD_DEFAULT') OR define('PASSWORD_DEFAULT', PASSWORD_BCRYPT);
|
| [68] * password_get_info()
|
| [74] function password_get_info($hash)
|
| [87] * password_hash()
|
| [95] function password_hash($password, $algo, array $options = array())
|
| [195] * password_needs_rehash()
|
| [203] function password_needs_rehash($hash, $algo, array $options = array())
|
| [205] $info = password_get_info($hash);
|
| [229] * password_verify()
|
| [236] function password_verify($password, $hash)
|
- Source File : i_academy/system/database/DB_driver.php
- Source File : i_academy/system/database/drivers/postgre/postgre_driver.php
| [116] /* An empty password is valid!
|
- Source File : i_academy/system/database/drivers/sqlsrv/sqlsrv_driver.php
| [137] // If the username and password are both empty, assume this is a
|
- Source File : i_academy/system/helpers/form_helper.php
- Source File : i_academy/system/language/english/email_lang.php
| [53]$lang['email_no_smtp_unpw'] = 'Error: You must assign a SMTP username and password.';
|
| [56]$lang['email_smtp_auth_pw'] = 'Failed to authenticate password. Error: %s';
|
- Source File : i_academy/system/language/english/ftp_lang.php
| [42]$lang['ftp_unable_to_login'] = 'Unable to login to your FTP server. Please check your username and password.';
|
- Source File : i_academy/system/libraries/Email.php
- Source File : i_academy/system/libraries/Ftp.php
- Source File : i_academy/system/libraries/Xmlrpc.php
[+] Keyword Searched : Secrets
- Source File : i_academy/application/config/config.php
| [451]| 'csrf_regenerate' = Regenerate token on every submission
|
| [455]$config['csrf_token_name'] = 'csrf_test_name';
|
- Source File : i_academy/application/config/database.php
| [48]| 'ssl_cert' - Path to the public key certificate file
|
- Source File : i_academy/application/config/rest.php
| [309]| If no key is provided, the request will result in an error. To override the
|
| [360]| Length of the created keys. Check your default database schema on the
|
| [379]$config['rest_key_name'] = 'X-API-KEY';
|
| [424]| the API key can access that controller. 'rest_enable_keys' must be enabled
|
| [469]| by an API key each hour. This is a general rule that can be overridden in the
|
- Source File : i_academy/application/config/user_agents.php
| [10]| mobile device data. The array keys are used to identify the device
|
- Source File : i_academy/application/controllers/Admin.php
| [999] saveJSONFile($current_editing_language, $key, $updatedValue);
|
| [1000] echo $current_editing_language . ' ' . $key . ' ' . $updatedValue;
|
| [1082] $paypal_keys = json_decode($instructor_data['paypal_keys'], true);
|
| [1083] $production_client_id = $paypal_keys[0]['production_client_id'];
|
| [1084] $production_secret_key = $paypal_keys[0]['production_secret_key'];
|
| [1086] // $production_secret_key = 'EFI50pO1s1cV1cySQ85wg2Pncn4VOPxKvTLBhyeGtd1QHNac-OJFsQlS7GAwlXZSg2wtm-BOJ9Ar3XJy';
|
| [1505] if (($key = array_search($instructor_id, $instructor_ids)) !== false) {
|
- Source File : i_academy/application/controllers/Api.php
| [14] $this->tokenHandler = new TokenHandler();
|
| [79] $userdata['token'] = $this->tokenHandler->GenerateToken($userdata);
|
| [92] $auth_token = $_GET['auth_token'];
|
| [93] $logged_in_user_details = json_decode($this->token_data_get($auth_token), true);
|
| [106] $auth_token = $_GET['auth_token'];
|
| [107] $logged_in_user_details = json_decode($this->token_data_get($auth_token), true);
|
| [120] $auth_token = $_GET['auth_token'];
|
| [122] $logged_in_user_details = json_decode($this->token_data_get($auth_token), true);
|
| [134] $auth_token = $_GET['auth_token'];
|
| [136] $logged_in_user_details = json_decode($this->token_data_get($auth_token), true);
|
| [146] $auth_token = $_GET['auth_token'];
|
| [147] $logged_in_user_details = json_decode($this->token_data_get($auth_token), true);
|
| [158] $auth_token = $_GET['auth_token'];
|
| [161] $logged_in_user_details = json_decode($this->token_data_get($auth_token), true);
|
| [174] if (isset($_GET['auth_token']) && !empty($_GET['auth_token'])) {
|
| [175] $auth_token = $_GET['auth_token'];
|
| [176] $logged_in_user_details = json_decode($this->token_data_get($auth_token), true);
|
| [226] if (isset($_GET['auth_token']) && !empty($_GET['auth_token'])) {
|
| [227] $auth_token = $_GET['auth_token'];
|
| [228] $logged_in_user_details = json_decode($this->token_data_get($auth_token), true);
|
| [239] if (isset($_POST['auth_token']) && !empty($_POST['auth_token'])) {
|
| [240] $auth_token = $_POST['auth_token'];
|
| [241] $logged_in_user_details = json_decode($this->token_data_get($auth_token), true);
|
| [264] if (isset($_POST['auth_token']) && !empty($_POST['auth_token'])) {
|
| [265] $auth_token = $_POST['auth_token'];
|
| [266] $logged_in_user_details = json_decode($this->token_data_get($auth_token), true);
|
| [280] if (isset($_POST['auth_token']) && !empty($_POST['auth_token'])) {
|
| [281] $auth_token = $_POST['auth_token'];
|
| [282] $logged_in_user_details = json_decode($this->token_data_get($auth_token), true);
|
| [295] if (isset($_GET['auth_token']) && !empty($_GET['auth_token'])) {
|
| [296] $auth_token = $_GET['auth_token'];
|
| [297] $logged_in_user_details = json_decode($this->token_data_get($auth_token), true);
|
| [309] if (isset($_GET['auth_token']) && !empty($_GET['auth_token'])) {
|
| [310] $auth_token = $_GET['auth_token'];
|
| [311] $logged_in_user_details = json_decode($this->token_data_get($auth_token), true);
|
| [330] $jwtData = $this->tokenHandler->DecodeToken($received_Token['Token']);
|
| [344] public function token_data_get($auth_token)
|
| [351] $jwtData = $this->tokenHandler->DecodeToken($auth_token);
|
- Source File : i_academy/application/controllers/Api_instructor.php
| [15] $this->tokenHandler = new TokenHandler();
|
| [18] public function token_data_get($auth_token)
|
| [24] $jwtData = $this->tokenHandler->DecodeToken($auth_token);
|
| [42] $userdata['token'] = $this->tokenHandler->GenerateToken($userdata);
|
| [49] if (isset($_POST['auth_token']) && !empty($_POST['auth_token']) && !empty($_POST['current_password']) && !empty($_POST['new_password']) && !empty($_POST['confirm_password'])) {
|
| [50] $auth_token = $_POST['auth_token'];
|
| [51] $logged_in_user_details = json_decode($this->token_data_get($auth_token), true);
|
| [86] if(isset($_POST['auth_token']) && !empty($_POST['auth_token'])){
|
| [87] $user_info = json_decode($this->token_data_get($_POST['auth_token']), true);
|
| [99] if (isset($_GET['auth_token']) && !empty($_GET['auth_token'])) {
|
| [100] $auth_token = $_GET['auth_token'];
|
| [101] $user_info = json_decode($this->token_data_get($auth_token), true);
|
| [113] if (isset($_POST['auth_token']) && !empty($_POST['auth_token'])) {
|
| [114] $user_info = json_decode($this->token_data_get($_POST['auth_token']), true);
|
| [128] if(isset($_GET['auth_token']) && !empty($_GET['auth_token'])){
|
| [129] $auth_token = $_GET['auth_token'];
|
| [130] $user_details = json_decode($this->token_data_get($auth_token), true);
|
| [146] if(isset($_POST['auth_token']) && !empty($_POST['auth_token'])){
|
| [147] $auth_token = $_POST['auth_token'];
|
| [148] $user_details = json_decode($this->token_data_get($auth_token), true);
|
| [158] if(isset($_GET['auth_token']) && !empty($_GET['auth_token']) && isset($_GET['course_id']) && !empty($_GET['course_id'])){
|
| [160] $auth_token = $_GET['auth_token'];
|
| [161] $user_details = json_decode($this->token_data_get($auth_token), true);
|
| [170] if(isset($_POST['auth_token']) && !empty($_POST['auth_token'])){
|
| [171] $auth_token = $_POST['auth_token'];
|
| [173] $user_details = json_decode($this->token_data_get($auth_token), true);
|
| [183] if(isset($_GET['auth_token']) && !empty($_GET['auth_token'])){
|
| [184] $auth_token = $_GET['auth_token'];
|
| [187] $user_details = json_decode($this->token_data_get($auth_token), true);
|
| [196] if(isset($_GET['auth_token']) && !empty($_GET['auth_token'])){
|
| [197] $auth_token = $_GET['auth_token'];
|
| [199] $user_details = json_decode($this->token_data_get($auth_token), true);
|
| [208] if(isset($_POST['auth_token']) && !empty($_POST['auth_token'])){
|
| [209] $auth_token = $_POST['auth_token'];
|
| [211] $user_details = json_decode($this->token_data_get($auth_token), true);
|
| [220] if(isset($_GET['auth_token']) && !empty($_GET['auth_token'])){
|
| [221] $auth_token = $_GET['auth_token'];
|
| [223] $user_details = json_decode($this->token_data_get($auth_token), true);
|
| [232] if(isset($_POST['auth_token']) && !empty($_POST['auth_token'])){
|
| [233] $auth_token = $_POST['auth_token'];
|
| [235] $user_details = json_decode($this->token_data_get($auth_token), true);
|
| [245] if(isset($_GET['auth_token']) && !empty($_GET['auth_token'])){
|
| [246] $auth_token = $_GET['auth_token'];
|
| [248] $user_details = json_decode($this->token_data_get($auth_token), true);
|
| [258] if(isset($_GET['auth_token']) && !empty($_GET['auth_token']) && isset($_GET['course_id']) && !empty($_GET['course_id'])){
|
| [259] $auth_token = $_GET['auth_token'];
|
| [261] $user_details = json_decode($this->token_data_get($auth_token), true);
|
| [270] if(isset($_GET['auth_token']) && !empty($_GET['auth_token']) && isset($_GET['course_id']) && !empty($_GET['course_id'])){
|
| [271] $auth_token = $_GET['auth_token'];
|
| [273] $user_details = json_decode($this->token_data_get($auth_token), true);
|
| [282] if(isset($_POST['auth_token']) && !empty($_POST['auth_token']) && isset($_POST['course_id']) && !empty($_POST['course_id'])){
|
| [283] $auth_token = $_POST['auth_token'];
|
| [285] $user_details = json_decode($this->token_data_get($auth_token), true);
|
| [294] if(isset($_POST['auth_token']) && !empty($_POST['auth_token']) && isset($_POST['section_id']) && !empty($_POST['section_id'])){
|
| [295] $auth_token = $_POST['auth_token'];
|
| [297] $user_details = json_decode($this->token_data_get($auth_token), true);
|
| [306] if(isset($_POST['auth_token']) && !empty($_POST['auth_token']) && isset($_POST['section_id']) && !empty($_POST['section_id']) && isset($_POST['course_id']) && !empty($_POST['course_id'])){
|
| [307] $auth_token = $_POST['auth_token'];
|
| [310] $user_details = json_decode($this->token_data_get($auth_token), true);
|
| [320] if(isset($_POST['auth_token']) && !empty($_POST['auth_token']) && isset($_POST['course_id']) && !empty($_POST['course_id']) && isset($_POST['section_id']) && !empty($_POST['section_id'])){
|
| [321] $auth_token = $_POST['auth_token'];
|
| [322] $user_details = json_decode($this->token_data_get($auth_token), true);
|
| [340] if(isset($_POST['auth_token']) && !empty($_POST['auth_token']) && isset($_POST['lesson_id']) && !empty($_POST['lesson_id'])){
|
| [341] $auth_token = $_POST['auth_token'];
|
| [343] $user_details = json_decode($this->token_data_get($auth_token), true);
|
| [352] if(isset($_GET['auth_token']) && !empty($_GET['auth_token']) && isset($_GET['lesson_id']) && !empty($_GET['lesson_id'])){
|
| [353] $auth_token = $_GET['auth_token'];
|
| [355] $user_details = json_decode($this->token_data_get($auth_token), true);
|
| [364] if(isset($_POST['auth_token']) && !empty($_POST['auth_token'])){
|
| [365] $auth_token = $_POST['auth_token'];
|
| [367] $user_details = json_decode($this->token_data_get($auth_token), true);
|
| [378] if(isset($_GET['auth_token']) && !empty($_GET['auth_token'])){
|
| [379] $auth_token = $_GET['auth_token'];
|
| [381] $user_details = json_decode($this->token_data_get($auth_token), true);
|
| [390] if(isset($_POST['auth_token']) && !empty($_POST['auth_token'])){
|
| [391] $auth_token = $_POST['auth_token'];
|
| [393] $user_details = json_decode($this->token_data_get($auth_token), true);
|
| [402] if(isset($_GET['auth_token']) && !empty($_GET['auth_token'])){
|
| [403] $auth_token = $_GET['auth_token'];
|
| [404] $user_details = json_decode($this->token_data_get($auth_token), true);
|
| [423] if(isset($_GET['auth_token']) && !empty($_GET['auth_token'])){
|
| [424] $auth_token = $_GET['auth_token'];
|
| [425] $user_details = json_decode($this->token_data_get($auth_token), true);
|
| [434] if(isset($_POST['auth_token']) && !empty($_POST['auth_token'])){
|
| [435] $auth_token = $_POST['auth_token'];
|
| [436] $user_details = json_decode($this->token_data_get($auth_token), true);
|
| [446] if(isset($_GET['auth_token']) && !empty($_GET['auth_token'])){
|
| [447] $auth_token = $_GET['auth_token'];
|
| [448] $user_details = json_decode($this->token_data_get($auth_token), true);
|
- Source File : i_academy/application/controllers/Checker.php
| [570] $response['authentication_key'] = $authentication_key;
|
| [574] 'authentication_key' => $authentication_key
|
| [591] $response['authentication_key'] = $authentication_key;
|
| [595] 'authentication_key' => $authentication_key
|
| [615] $response['authentication_key'] = $authentication_key;
|
| [627] 'authentication_key' => $authentication_key
|
| [644] $response['authentication_key'] = $authentication_key;
|
| [651] 'authentication_key' => $authentication_key
|
| [885] // authentication_key validation
|
| [896] $authentication_key = $this->input->post("authentication_key");
|
| [899] 'authentication_key' => $authentication_key
|
| [913] $response['authentication_key'] = $authentication_key;
|
- Source File : i_academy/application/controllers/Home.php
| [297] $key = array_search($course_id, $previous_cart_items);
|
| [377] $paypal_keys = get_settings('paypal');
|
| [981] public function course_purchase($auth_token = '', $course_id = '')
|
| [984] if (empty($auth_token) || $auth_token == "null") {
|
| [993] $logged_in_user_details = json_decode($this->jwt_model->token_data_get($auth_token), true);
|
- Source File : i_academy/application/controllers/Install.php
| [212] $this->db->where('key', 'system_name');
|
| [237] $this->db->where('key', 'purchase_code');
|
- Source File : i_academy/application/controllers/Login.php
| [30] $auth_token = $this->input->get('auth_token');
|
| [33] $d['auth_token'] = $auth_token;
|
| [268] $data['paypal_keys'] = json_encode($paypal_info);
|
| [273] 'secret_live_key' => ""
|
| [276] $data['stripe_keys'] = json_encode($stripe_info);
|
| [313] if($resetsession == 'true' && $token == 'false' && $redirect == 'true'){
|
| [350] if($user_token == 'true' && $redirects == 'false'){
|
| [355] else if($user_token == 'false' && $redirects == 'false'){
|
| [363] $token = substr( md5( rand(100000000,20000000000) ) , 0,7).md5($email).substr( md5( rand(100000000,20000000000) ) , 0,7);
|
| [372] $url = sprintf('%shome/reset_password_validation?token=%s&id=%s', base_url(), $token, $vid);
|
- Source File : i_academy/application/controllers/User.php
| [643] if (($key = array_search($instructor_id, $instructor_ids)) !== false) {
|
- Source File : i_academy/application/helpers/common_helper.php
| [96] $CI->db->where('key', 'system_currency');
|
| [102] $CI->db->where('key', 'currency_position');
|
| [134] $CI->db->where('key', 'system_currency');
|
| [204] if (array_key_exists($key, $themeConfigs)) {
|
- Source File : i_academy/application/helpers/multi_language_helper.php
| [23] $language_code = $CI->db->get_where('settings' , array('key' => 'language'))->row()->value;
|
| [24] $key = strtolower(preg_replace('/\s+/', '_', $phrase));
|
| [28] if ($langArray && !array_key_exists($key, $langArray) ) {
|
| [29] $langArray[$key] = ucfirst(str_replace('_', ' ', $key));
|
| [48] $key = strtolower(preg_replace('/\s+/', '_', $phrase));
|
| [52] if ($langArray && !array_key_exists($key, $langArray) ) {
|
| [53] $langArray[$key] = ucfirst(str_replace('_', ' ', $key));
|
| [94] function saveJSONFile($language_code, $updating_key, $updating_value){
|
| [99] $jsonString[$updating_key] = filter_var(escapeJsonString($updating_value), FILTER_SANITIZE_SPECIAL_CHARS, FILTER_SANITIZE_STRING);
|
| [101] $jsonString[$updating_key] = filter_var(escapeJsonString($updating_value), FILTER_SANITIZE_SPECIAL_CHARS, FILTER_SANITIZE_STRING);
|
- Source File : i_academy/application/language/english/rest_controller_lang.php
| [13]$lang['text_rest_api_key_unauthorized'] = 'This API key does not have access to the requested controller';
|
| [14]$lang['text_rest_api_key_permissions'] = 'This API key does not have enough permissions';
|
| [15]$lang['text_rest_api_key_time_limit'] = 'This API key has reached the time limit for this method';
|
- Source File : i_academy/application/libraries/Format.php
| [156] $array[$key] = $this->to_array($value);
|
| [207] $key = (singular($basenode) != $basenode) ? singular($basenode) : 'item';
|
| [211] $key = preg_replace('/[^a-z_\-0-9]/i', '', $key);
|
| [213] if ($key === '_attributes' && (is_array($value) || is_object($value)))
|
- Source File : i_academy/application/libraries/JWT.php
| [69] public static function decode($jwt, $key, array $allowed_algs = array())
|
| [99] if (is_array($key) || $key instanceof \ArrayAccess) {
|
| [116] // token can actually be used. If it's not yet that time, abort.
|
| [119] 'Cannot handle token prior to ' . date(DateTime::ISO8601, $payload->nbf)
|
| [123] // Check that this token has been created before 'now'. This prevents
|
| [128] 'Cannot handle token prior to ' . date(DateTime::ISO8601, $payload->iat)
|
| [177] * Sign a string with a given key and algorithm.
|
| [199] $success = openssl_sign($msg, $signature, $key, $algorithm);
|
| [214] * @param string|resource $key For HS*, a string key works. for RS*, must be a resource of an openssl public key
|
| [230] $success = openssl_verify($msg, $signature, $key, $algorithm);
|
- Source File : i_academy/application/libraries/Paystack.php
| [23] * @param string $secret_key - Secret key for your account with Paystack
|
| [29] $test_mode = array_key_exists('paystack_test_mode', $params) ? $params['paystack_test_mode'] : true;
|
| [31] $secret_key = array_key_exists('paystack_key_test_secret', $params) ? trim($params['paystack_key_test_secret']) : '';
|
| [33] $secret_key = array_key_exists('paystack_key_live_secret', $params) ? trim($params['paystack_key_live_secret']) : '';
|
| [35] if (!is_string($secret_key) || !(substr($secret_key, 0, 8)==='sk_'.($test_mode ? 'test_':'live_'))) {
|
| [41] $secret_key=trim(strval($params_or_key));
|
| [42] if (!is_string($secret_key) || !(substr($secret_key, 0, 3)==='sk_')) {
|
| [50] $this->secret_key = $secret_key;
|
| [390] if (array_key_exists($method, $this->methods) && is_callable($this->methods[$method])) {
|
| [400] array_key_exists($method, PaystackHelpersRouter::$ROUTE_SINGULAR_LOOKUP) ?
|
| [626] $endpoint = str_replace('{' . $key . '}', $value, $endpoint);
|
| [632] if (!array_key_exists(PaystackContractsRouteInterface::ARGS_KEY, $this->interface)) {
|
| [755] if (!array_key_exists('custom_fields', $this->meta)) {
|
- Source File : i_academy/application/libraries/REST_Controller.php
| [277] * If the request is allowed based on the API key provided
|
| [455] $this->_supported_formats = array_intersect_key($this->_supported_formats, array_flip($supported_formats));
|
| [551] if ($this->config->item('rest_database_group') && ($this->config->item('rest_enable_keys') || $this->config->item('rest_enable_logging')))
|
| [567] // Skip keys test for $config['auth_override_class_method']['class'['method'] = 'none'
|
| [568] if ($this->config->item('rest_enable_keys') && $this->auth_override !== TRUE)
|
| [686] $object_called = preg_replace('/^(.*)\.(?:'.implode('|', array_keys($this->_supported_formats)).')$/', '$1', $object_called);
|
| [699] $use_key = ! (isset($this->methods[$controller_method]['key']) && $this->methods[$controller_method]['key'] === FALSE);
|
| [720] // Check to see if this key has access to the requested controller
|
| [721] if ($this->config->item('rest_enable_keys') && $use_key && empty($this->rest->key) === FALSE && $this->_check_access() === FALSE)
|
| [730] $this->config->item('rest_message_field_name') => $this->lang->line('text_rest_api_key_unauthorized')
|
| [749] $response = [$this->config->item('rest_status_field_name') => FALSE, $this->config->item('rest_message_field_name') => $this->lang->line('text_rest_api_key_time_limit')];
|
| [766] $response = [$this->config->item('rest_status_field_name') => FALSE, $this->config->item('rest_message_field_name') => $this->lang->line('text_rest_api_key_permissions')];
|
| [778] // No key stuff, but record that stuff is happening
|
| [970] $pattern = '/\.('.implode('|', array_keys($this->_supported_formats)).')($|\/)/';
|
| [997] foreach (array_keys($this->_supported_formats) as $format)
|
| [1072] // Get the api key name variable set in the rest config file
|
| [1073] $api_key_variable = $this->config->item('rest_key_name');
|
| [1076] $key_name = 'HTTP_' . strtoupper(str_replace('-', '_', $api_key_variable));
|
| [1083] // Find the key from server or arguments
|
| [1084] if (($key = isset($this->_args[$api_key_variable]) ? $this->_args[$api_key_variable] : $this->input->server($key_name)))
|
| [1086] if ( ! ($row = $this->rest->db->where($this->config->item('rest_key_column'), $key)->get($this->config->item('rest_keys_table'))->row()))
|
| [1091] $this->rest->key = $row->{$this->config->item('rest_key_column')};
|
| [1222] $api_key = $this->input->ip_address();
|
| [1632] * @param NULL $key Key to retrieve from the GET request
|
| [1637] public function get($key = NULL, $xss_clean = NULL)
|
| [1644] return isset($this->_get_args[$key]) ? $this->_xss_clean($this->_get_args[$key], $xss_clean) : NULL;
|
| [1651] * @param NULL $key Key to retrieve from the OPTIONS request.
|
| [1656] public function options($key = NULL, $xss_clean = NULL)
|
| [1663] return isset($this->_options_args[$key]) ? $this->_xss_clean($this->_options_args[$key], $xss_clean) : NULL;
|
| [1670] * @param NULL $key Key to retrieve from the HEAD request
|
| [1675] public function head($key = NULL, $xss_clean = NULL)
|
| [1682] return isset($this->_head_args[$key]) ? $this->_xss_clean($this->_head_args[$key], $xss_clean) : NULL;
|
| [1689] * @param NULL $key Key to retrieve from the POST request
|
| [1694] public function post($key = NULL, $xss_clean = NULL)
|
| [1701] return isset($this->_post_args[$key]) ? $this->_xss_clean($this->_post_args[$key], $xss_clean) : NULL;
|
| [1708] * @param NULL $key Key to retrieve from the PUT request
|
| [1713] public function put($key = NULL, $xss_clean = NULL)
|
| [1720] return isset($this->_put_args[$key]) ? $this->_xss_clean($this->_put_args[$key], $xss_clean) : NULL;
|
| [1727] * @param NULL $key Key to retrieve from the DELETE request
|
| [1732] public function delete($key = NULL, $xss_clean = NULL)
|
| [1739] return isset($this->_delete_args[$key]) ? $this->_xss_clean($this->_delete_args[$key], $xss_clean) : NULL;
|
| [1746] * @param NULL $key Key to retrieve from the PATCH request
|
| [1751] public function patch($key = NULL, $xss_clean = NULL)
|
| [1758] return isset($this->_patch_args[$key]) ? $this->_xss_clean($this->_patch_args[$key], $xss_clean) : NULL;
|
| [1765] * @param NULL $key Key to retrieve from the query parameters
|
| [1770] public function query($key = NULL, $xss_clean = NULL)
|
| [1777] return isset($this->_query_args[$key]) ? $this->_xss_clean($this->_query_args[$key], $xss_clean) : NULL;
|
| [1989] if (array_key_exists($username, $valid_logins) === FALSE)
|
| [2017] $key = $this->config->item('auth_source');
|
| [2258] * Check to see if the API key has access to the controller and methods
|
| [2261] * @return bool TRUE the API key has access; otherwise, FALSE
|
| [2281] //check if the key has all_access
|
- Source File : i_academy/application/libraries/TokenHandler.php
| [6] PRIVATE $key = "academy-lms-api-token-handler";
|
- Source File : i_academy/application/libraries/Stripe/lib/Account.php
| [130] !\array_key_exists($i, $originalValue) ||
|
- Source File : i_academy/application/libraries/Stripe/lib/ApiRequestor.php
| [316] $msg = 'No API key provided. (HINT: set your API key using '
|
| [324] // Clients can supply arbitrary additional keys to be included in the
|
- Source File : i_academy/application/libraries/Stripe/lib/BaseStripeClient.php
| [26] * should be the API key. It can also be an array with various configuration settings.
|
| [30] * - api_key (null|string): the Stripe API key, to be used in regular API requests.
|
| [47] * @param array<string, mixed>|string $config the API key as a string, or an array containing
|
| [70] * Gets the API key used by the client to send requests.
|
| [72] * @return null|string the API key used by the client to send requests
|
| [178] $msg = 'No API key provided. Set your API key when constructing the '
|
| [180] . 'using the `api_key` key in the $opts argument.';
|
| [214] if (null !== $config['api_key'] && !\is_string($config['api_key'])) {
|
| [224] if (null !== $config['api_key'] && (\preg_match('/\s/', $config['api_key']))) {
|
| [225] $msg = 'api_key cannot contain whitespace';
|
| [261] $extraConfigKeys = \array_diff(\array_keys($config), \array_keys($this->getDefaultConfig()));
|
| [263] throw new \Stripe\Exception\InvalidArgumentException('Found unknown key(s) in configuration array: ' . \implode(',', $extraConfigKeys));
|
- Source File : i_academy/application/libraries/Stripe/lib/Card.php
| [34] * @property null|string $fingerprint Uniquely identifies this particular c.. [40] * @property null|string $tokenization_method If the card number is tokenized, this is the method that was used. Can be <code>amex_express_checkout</code>, <code>android_pay</code> (includes Google Pay), <code>apple_pay</code>, <code>masterpass</code>, <code>visa_checkout</code>, or null.
|
| [72] * @see https://stripe.com/docs/api/cards/object#card_object-tokenization_method
|
- Source File : i_academy/application/libraries/Stripe/lib/Collection.php
| [145] if (\array_key_exists('ending_before', $filters) &&
|
| [146] !\array_key_exists('starting_after', $filters)) {
|
- Source File : i_academy/application/libraries/Stripe/lib/EphemeralKey.php
| [9] * @property int $expires Time at which the key will expire. Measured in seconds since the Unix epoch.
|
| [11] * @property string $secret The key's secret. You can use this value to make authorized requests to the Stripe API.
|
- Source File : i_academy/application/libraries/Stripe/lib/ErrorObject.php
| [49] const CODE_API_KEY_EXPIRED = 'api_key_expired';
|
| [108] const CODE_PLATFORM_API_KEY_EXPIRED = 'platform_api_key_expired';
|
| [116] const CODE_SECRET_KEY_REQUIRED = 'secret_key_required';
|
| [128] const CODE_TOKEN_ALREADY_USED = 'token_already_used';
|
- Source File : i_academy/application/libraries/Stripe/lib/ExchangeRate.php
| [20] * @property \Stripe\StripeObject $rates Hash where the keys are supported currencies and the values are the exchange rate at which the base id currency converts to the key currency.
|
- Source File : i_academy/application/libraries/Stripe/lib/OAuth.php
| [19] $base = ($opts && \array_key_exists('connect_base', $opts)) ? $opts['connect_base'] : Stripe::$connectBase;
|
| [22] if (!\array_key_exists('response_type', $params)) {
|
| [43] $base = ($opts && \array_key_exists('connect_base', $opts)) ? $opts['connect_base'] : Stripe::$connectBase;
|
| [68] $base = ($opts && \array_key_exists('connect_base', $opts)) ? $opts['connect_base'] : Stripe::$connectBase;
|
| [83] $clientId = ($params && \array_key_exists('client_id', $params)) ? $params['client_id'] : null;
|
- Source File : i_academy/application/libraries/Stripe/lib/Order.php
| [19] * @property null|int $application_fee A fee in cents that will be applied ..
|
- Source File : i_academy/application/libraries/Stripe/lib/PaymentIntent.php
| [30] * @property null|string $client_secret <p>The client secret of this Paymen..
|
- Source File : i_academy/application/libraries/Stripe/lib/Price.php
| [31] * @property null|string $lookup_key A lookup key used to retrieve prices dynamically from a static string.
|
- Source File : i_academy/application/libraries/Stripe/lib/SetupIntent.php
| [45] * @property null|string $client_secret <p>The client secret of this SetupI..
|
- Source File : i_academy/application/libraries/Stripe/lib/Source.php
| [25] * @property string $client_secret The client secret of the source. Used for client-side retrieval using a publishable key.
|
- Source File : i_academy/application/libraries/Stripe/lib/Stripe.php
| [10] /** @var string The Stripe API key to be used for requests. */
|
| [64] * @return string the API key used for requests
|
| [102] * Sets the API key to be used for requests.
|
- Source File : i_academy/application/libraries/Stripe/lib/StripeClientInterface.php
| [11] * Gets the API key used by the client to send requests.
|
| [13] * @return null|string the API key used by the client to send requests
|
- Source File : i_academy/application/libraries/Stripe/lib/StripeObject.php
| [57] * the previous source had an `address_state` key associated with it and we
|
| [86] * any old keys that may have existed, we actually have to send an explicit
|
| [103] // to clear keys that may have been previously set by sending empty
|
| [272] $removed = new Util\Set(\array_diff(\array_keys($this->_values), \array_keys($values)));
|
| [331] $original = \array_key_exists($k, $this->_originalValues) ? $this->_originalValues[$k] : null;
|
| [392] "Cannot save property `{$key}` containing an API resource of type " .
|
| [414] if ($original && $unsaved && $key && static::getAdditiveParams()->includes($key)) {
|
| [430] * Returns an associative array with the key and values composing the
|
| [445] return \array_reduce(\array_keys($this->_values), function ($acc, $k) use ($maybeToArray) {
|
| [478] * Sets all keys within the StripeObject as unsaved so that they will be
|
| [546] return \array_fill_keys(\array_keys($values), '');
|
- Source File : i_academy/application/libraries/Stripe/lib/Token.php
| [8] * your customers in a secure manner. A token representing this information is
|
| [19] * client-side tokenization, your customer's information is not sent directly to
|
| [41] * @property string $type Type of the token: <code>account</code>, <code>bank_account</code>, <code>card</code>, or <code>pii</code>.
|
- Source File : i_academy/application/libraries/Stripe/lib/Webhook.php
| [18] * @param string $secret secret used to generate the signature
|
| [27] public static function constructEvent($payload, $sigHeader, $secret, $tolerance = self::DEFAULT_TOLERANCE)
|
| [29] WebhookSignature::verifyHeader($payload, $sigHeader, $secret, $tolerance);
|
- Source File : i_academy/application/libraries/Stripe/lib/WebhookEndpoint.php
| [26] * @property string $secret The endpoint's secret, used to generate <a href="https://stripe.com/docs/webhooks/signatures">webhook signatures</a>. Only returned at creation.
|
- Source File : i_academy/application/libraries/Stripe/lib/WebhookSignature.php
| [17] * @param string $secret secret used to generate the signature
|
| [25] public static function verifyHeader($payload, $header, $secret, $tolerance = null)
|
| [132] * @param string $secret the secret used to generate the signature
|
- Source File : i_academy/application/libraries/Stripe/lib/Exception/ApiErrorException.php
| [213] if (null === $this->jsonBody || !\array_key_exists('error', $this->jsonBody)) {
|
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/InvalidClientException.php
| [8] * or the API key mode (live or test mode) does not match the client_id mode.
|
- Source File : i_academy/application/libraries/Stripe/lib/HttpClient/CurlClient.php
| [286] $isPost = \array_key_exists(\CURLOPT_POST, $opts) && 1 === $opts[\CURLOPT_POST];
|
| [300] list($key, $value) = \explode(':', \trim($header_line), 2);
|
- Source File : i_academy/application/libraries/Stripe/lib/Reporting/ReportRun.php
| [15] * href="https://stripe.com/docs/keys#test-live-modes">live-mode API key</a>.
|
- Source File : i_academy/application/libraries/Stripe/lib/Reporting/ReportType.php
| [15] * href="https://stripe.com/docs/keys#test-live-modes">live-mode API key</a>.
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/AbstractServiceFactory.php
| [48] if (!\array_key_exists($name, $this->services)) {
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/AccountService.php
| [150] * Accounts created using test-mode keys can be deleted at any time. Accounts
|
| [151] * created using live-mode keys can only be deleted once all balances are zero.
|
| [212] * created using live-mode keys may only be rejected once all balances are zero.
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/ChargeService.php
| [47] * <code>Charge</code> object. If your API key is in test mode, the supplied
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/CoreServiceFactory.php
| [107] 'tokens' => TokenService::class,
|
| [115] return \array_key_exists($name, self::$classMap) ? self::$classMap[$name] : null;
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/EphemeralKeyService.php
| [8] * Invalidates a short-lived API key for a given resource.
|
| [24] * Creates a short-lived API key for a given resource.
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/PaymentIntentService.php
| [84] * href="#payment_intent_object-client_secret">client_secret</a>. After
|
| [89] * attempts must be initiated using a secret key. If any actions are required for
|
| [139] * <code>client_secret</code> is provided in the query string.
|
| [141] * When retrieved with a publishable key, only a subset of properties will be
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/PayoutService.php
| [47] * If your API key is in test mode, money wonât actually be sent, though everything
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/SetupIntentService.php
| [91] * <code>client_secret</code> is provided in the query string.
|
| [93] * When retrieved with a publishable key, only a subset of properties will be
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/TokenService.php
| [8] * Creates a single-use token that represents a bank accountâs details. This token
|
| [10] * token can be used only once, by attaching it to a <a href="#accounts">Custom
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/BillingPortal/BillingPortalServiceFactory.php
| [21] return \array_key_exists($name, self::$classMap) ? self::$classMap[$name] : null;
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/Checkout/CheckoutServiceFactory.php
| [21] return \array_key_exists($name, self::$classMap) ? self::$classMap[$name] : null;
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/Issuing/IssuingServiceFactory.php
| [29] return \array_key_exists($name, self::$classMap) ? self::$classMap[$name] : null;
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/Radar/RadarServiceFactory.php
| [25] return \array_key_exists($name, self::$classMap) ? self::$classMap[$name] : null;
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/Reporting/ReportingServiceFactory.php
| [23] return \array_key_exists($name, self::$classMap) ? self::$classMap[$name] : null;
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/Reporting/ReportRunService.php
| [9] * <a href="https://stripe.com/docs/keys#test-live-modes">live-mode API key</a>.).
|
| [25] * href="https://stripe.com/docs/keys#test-live-modes">live-mode API key</a>.).
|
| [41] * href="https://stripe.com/docs/keys#test-live-modes">live-mode API key</a>.).
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/Reporting/ReportTypeService.php
| [9] * href="https://stripe.com/docs/keys#test-live-modes">live-mode API key</a>.).
|
| [25] * href="https://stripe.com/docs/keys#test-live-modes">live-mode API key</a>.).
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/Sigma/SigmaServiceFactory.php
| [21] return \array_key_exists($name, self::$classMap) ? self::$classMap[$name] : null;
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/Terminal/TerminalServiceFactory.php
| [25] return \array_key_exists($name, self::$classMap) ? self::$classMap[$name] : null;
|
- Source File : i_academy/application/libraries/Stripe/lib/Terminal/ConnectionToken.php
| [14] * @property string $secret Your application should pass this token to the Stripe Terminal SDK.
|
- Source File : i_academy/application/libraries/Stripe/lib/Util/CaseInsensitiveArray.php
| [21] $this->container = \array_change_key_case($initial_array, \CASE_LOWER);
|
- Source File : i_academy/application/libraries/Stripe/lib/Util/LoggerInterface.php
| [23] * to produce a stack trace, it MUST be in a key named "exception".
|
- Source File : i_academy/application/libraries/Stripe/lib/Util/RequestOptions.php
| [123] if (\array_key_exists('idempotency_key', $options)) {
|
| [127] if (\array_key_exists('stripe_account', $options)) {
|
| [131] if (\array_key_exists('stripe_version', $options)) {
|
| [135] if (\array_key_exists('api_base', $options)) {
|
| [141] $message = 'Got unexpected keys in options array: ' . \implode(', ', \array_keys($options));
|
- Source File : i_academy/application/libraries/Stripe/lib/Util/Util.php
| [14] * A list is defined as an array for which all the keys are consecutive
|
| [227] * @param string $key a string to URL-encode
|
- Source File : i_academy/application/models/Api_instructor_model.php
| [235] foreach ($languages as $key => $language) {
|
| [237] $all_languages[$key] = $language_arr;
|
| [306] foreach ($languages as $key => $language) {
|
| [308] $all_languages[$key] = $language_arr;
|
| [340] $response['meta_keywords'] = $course_details['meta_keywords'];
|
| [374] $data['meta_keywords'] = $this->input->post('meta_keywords');
|
| [524] $section_and_lesson[$key] = $sections;
|
| [759] $access_key = get_settings('amazon_s3_access_key');
|
| [760] $secret_key = get_settings('amazon_s3_secret_key');
|
| [768] 'key' => $access_key, //Put key here
|
| [769] 'secret' => $secret_key // Put Secret here
|
| [777] $key = str_replace(".", "-" . rand(1, 9999) . ".", $tmpfile['name']);
|
| [807] if (array_key_exists('system_video_file', $_FILES)) {
|
| [1033] $access_key = get_settings('amazon_s3_access_key');
|
| [1034] $secret_key = get_settings('amazon_s3_secret_key');
|
| [1042] 'key' => $access_key, //Put key here
|
| [1043] 'secret' => $secret_key // Put Secret here
|
| [1051] $key = str_replace(".", "-" . rand(1, 9999) . ".", $tmpfile['name']);
|
| [1081] if (array_key_exists('system_video_file', $_FILES)) {
|
- Source File : i_academy/application/models/Api_model.php
| [39] foreach ($categories as $key => $category) {
|
| [40] $categories[$key]['thumbnail'] = $this->get_image('category_thumbnail', $category['thumbnail']);
|
| [41] $categories[$key]['number_of_courses'] = $this->crud_model->get_category_wise_courses($category['id'])->num_rows();
|
| [149] $courses[$key]['requirements'] = json_decode($course['requirements']);
|
| [150] $courses[$key]['outcomes'] = json_decode($course['outcomes']);
|
| [151] $courses[$key]['thumbnail'] = $this->get_image('course_thumbnail', $course['id']);
|
| [153] $courses[$key]['price'] = get_phrase('free');
|
| [156] $courses[$key]['price'] = currency($course['discounted_price']);
|
| [158] $courses[$key]['price'] = currency($course['price']);
|
| [164] $courses[$key]['rating'] = ceil($total_rating / $number_of_ratings);
|
| [168] $courses[$key]['number_of_ratings'] = $number_of_ratings;
|
| [170] $courses[$key]['instructor_name'] = $instructor_details['first_name'] . ' ' . $instructor_details['last_name'];
|
| [171] $courses[$key]['total_enrollment'] = $this->crud_model->enrol_history($course['id'])->num_rows();
|
| [172] $courses[$key]['shareable_link'] = site_url('home/course/' . slugify($course['title']) . '/' . $course['id']);
|
| [226] if ($row['key'] == 'paypal' || $row['key'] == 'stripe_keys') {
|
| [227] $system_settings_data[$row['key']] = json_decode($row['value'], true);
|
| [242] $row['key'] == "language" ||
|
| [243] $row['key'] == "system_name" ||
|
| [244] $row['key'] == "system_title" ||
|
| [245] $row['key'] == "system_email" ||
|
| [250] $row['key'] == "youtube_api_key" ||
|
| [251] $row['key'] == "vimeo_api_key"
|
| [292] foreach ($my_courses as $key => $my_course) {
|
| [294] $my_courses[$key]['completion'] = round(course_progress($my_course['id'], $user_id));
|
| [295] $my_courses[$key]['total_number_of_lessons'] = $this->crud_model->get_lessons('course', $my_course['id'])->num_rows();
|
| [296] $my_courses[$key]['total_number_of_completed_lessons'] = $this->get_completed_number_of_lesson($user_id, 'course', $my_course['id']);
|
| [326] if ($key != $course_id) {
|
| [350] $sections[$key]['lessons'] = $this->section_wise_lessons($section['id'], $user_id);
|
| [351] $sections[$key]['total_duration'] = str_replace(' ' . get_phrase('hours'), "", $this->crud_model->get_total_duration_of_lesson_by_section_id($section['id']));
|
| [359] $sections[$key]['lesson_counter_starts'] = $lesson_counter_starts;
|
| [360] $sections[$key]['lesson_counter_ends'] = $lesson_counter_ends;
|
| [362] $sections[$key]['completed_lesson_number'] = $this->get_completed_number_of_lesson($user_id, 'section', $section['id']);
|
| [364] $sections[$key]['completed_lesson_number'] = 0;
|
| [378] $response[$key]['duration'] = readable_time_for_humans($lesson['duration_for_mobile_application']);
|
| [379] $response[$key]['course_id'] = $lesson['course_id'];
|
| [380] $response[$key]['section_id'] = $lesson['section_id'];
|
| [381] $response[$key]['video_type'] = ($lesson['video_type_for_mobile_application'] == "" ? "" : $lesson['video_type_for_mobile_application']);
|
| [382] $response[$key]['video_url'] = ($lesson['video_url_for_mobile_application'] == "" ? "" : $lesson['video_url_for_mobile_application']);;
|
| [383] $response[$key]['video_url_web'] = $lesson['video_url'];
|
| [384] $response[$key]['video_type_web'] = $lesson['video_type'];
|
| [385] $response[$key]['lesson_type'] = $lesson['lesson_type'];
|
| [386] $response[$key]['attachment'] = $lesson['attachment'];
|
| [387] $response[$key]['attachment_url'] = base_url() . 'uploads/lesson_files/' . $lesson['attachment'];
|
| [388] $response[$key]['attachment_type'] = $lesson['attachment_type'];
|
| [391] $response[$key]['is_completed'] = lesson_progress($lesson['id'], $user_id);
|
| [393] $response[$key]['is_completed'] = 0;
|
| [402] foreach ($responses as $key => $response) {
|
| [403] $responses[$key]['user_validity'] = true;
|
| [427] foreach ($lesson_details as $key => $lesson_detail) {
|
| [428] $lesson_details[$key]['duration'] = readable_time_for_humans($lesson_detail['duration']);
|
| [439] $response[$key]['sections'] = $this->sections_get($course_id);
|
| [440] $response[$key]['is_wishlisted'] = $this->is_added_to_wishlist($user_id, $course_id);
|
| [441] $response[$key]['is_purchased'] = $this->is_purchased($user_id, $course_id);
|
| [442] $response[$key]['includes'] = array(
|
- Source File : i_academy/application/models/Crud_model.php
| [272] $this->db->where('key', 'system_name');
|
| [276] $this->db->where('key', 'system_title');
|
| [288] $this->db->where('key', 'language');
|
| [292] $this->db->where('key', 'text_align');
|
| [296] $this->db->where('key', 'system_email');
|
| [308] $this->db->where('key', 'youtube_api_key');
|
| [312] $this->db->where('key', 'vimeo_api_key');
|
| [316] $this->db->where('key', 'purchase_code');
|
| [320] $this->db->where('key', 'footer_text');
|
| [324] $this->db->where('key', 'footer_link');
|
| [328] $this->db->where('key', 'website_keywords');
|
| [332] $this->db->where('key', 'website_description');
|
| [336] $this->db->where('key', 'student_email_verification');
|
| [343] $this->db->where('key', 'protocol');
|
| [347] $this->db->where('key', 'smtp_host');
|
| [351] $this->db->where('key', 'smtp_port');
|
| [355] $this->db->where('key', 'smtp_user');
|
| [359] $this->db->where('key', 'smtp_pass');
|
| [370] $paypal['sandbox_secret_key'] = $this->input->post('sandbox_secret_key');
|
| [373] $paypal['production_secret_key'] = $this->input->post('production_secret_key');
|
| [382] $this->db->where('key', 'paypal_currency');
|
| [393] $stripe['public_key'] = $this->input->post('public_key');
|
| [394] $stripe['secret_key'] = $this->input->post('secret_key');
|
| [395] $stripe['public_live_key'] = $this->input->post('public_live_key');
|
| [396] $stripe['secret_live_key'] = $this->input->post('secret_live_key');
|
| [401] $this->db->where('key', 'stripe_keys');
|
| [405] $this->db->where('key', 'stripe_currency');
|
| [412] $this->db->where('key', 'system_currency');
|
| [416] $this->db->where('key', 'currency_position');
|
| [424] $this->db->where('key', 'allow_instructor');
|
| [430] $this->db->where('key', 'instructor_revenue');
|
| [436] $this->db->where('key', 'instructor_application_note');
|
| [489] $data['meta_keywords'] = $this->input->post('meta_keywords');
|
| [626] $data['meta_keywords'] = $this->input->post('meta_keywords');
|
| [1097] $access_key = get_settings('amazon_s3_access_key');
|
| [1098] $secret_key = get_settings('amazon_s3_secret_key');
|
| [1106] 'key' => $access_key, //Put key here
|
| [1107] 'secret' => $secret_key // Put Secret here
|
| [1115] $key = str_replace(".", "-" . rand(1, 9999) . ".", $tmpfile['name']);
|
| [1145] if (array_key_exists('system_video_file', $_FILES)) {
|
| [1327] $access_key = get_settings('amazon_s3_access_key');
|
| [1328] $secret_key = get_settings('amazon_s3_secret_key');
|
| [1336] 'key' => $access_key, //Put key here
|
| [1337] 'secret' => $secret_key // Put Secret here
|
| [1345] $key = str_replace(".", "-" . rand(1, 9999) . ".", preg_replace('/\s+/', '', $tmpfile['name']));
|
| [1390] if (array_key_exists('system_video_file', $_FILES)) {
|
| [1493] $this->db->where('key', 'banner_title');
|
| [1497] $this->db->where('key', 'banner_sub_title');
|
| [1501] $this->db->where('key', 'cookie_status');
|
| [1505] $this->db->where('key', 'cookie_note');
|
| [1509] $this->db->where('key', 'cookie_policy');
|
| [1514] $this->db->where('key', 'about_us');
|
| [1518] $this->db->where('key', 'terms_and_condition');
|
| [1522] $this->db->where('key', 'privacy_policy');
|
| [1529] $this->db->where('key', 'recaptcha_status');
|
| [1533] $this->db->where('key', 'recaptcha_sitekey');
|
| [1537] $this->db->where('key', 'recaptcha_secretkey');
|
| [1546] $this->db->where('key', 'banner_image');
|
| [1557] $this->db->where('key', 'light_logo');
|
| [1568] $this->db->where('key', 'dark_logo');
|
| [1579] $this->db->where('key', 'small_logo');
|
| [1608] if ($key != $course_id) {
|
| [1613] // $key = array_search($course_id, $wishlists);
|
| [1998] $personal_token = "FkA9UyDiQT0YiKwYLK3ghyFNRVV9SeUn";
|
| [2352] $personal_token = "gC0J1ZpY53kRpynNe4g2rWT5s4MW56Zg";
|
| [2754] 'secret' => get_frontend_settings('recaptcha_secretkey'),
|
| [2799] foreach ($multi_instructor_courses as $key => $multi_instructor_course) {
|
- Source File : i_academy/application/models/Email_model.php
| [272] $from = $this->db->get_where('settings' , array('key' => 'system_email'))->row()->value;
|
- Source File : i_academy/application/models/Jwt_model.php
| [8] $this->tokenHandler = new TokenHandler();
|
| [12] public function token_data_get($auth_token)
|
| [19] $jwtData = $this->tokenHandler->DecodeToken($auth_token);
|
- Source File : i_academy/application/models/Payment_model.php
| [17] $stripe_keys = get_settings('stripe_keys');
|
| [20] $public_key = $values[0]->public_key;
|
| [21] $secret_key = $values[0]->secret_key;
|
| [23] $public_key = $values[0]->public_live_key;
|
| [24] $secret_key = $values[0]->secret_live_key;
|
| [28] $stripe_keys = json_decode($instructor_data['stripe_keys'], true);
|
| [29] $public_key = $stripe_keys[0]['public_live_key'];
|
| [30] $secret_key = $stripe_keys[0]['secret_live_key'];
|
| [123] $paypal_keys = get_settings('paypal');
|
- Source File : i_academy/application/models/User_model.php
| [69] $paypal['production_secret_key'] = html_escape($this->input->post('paypal_secret_key'));
|
| [71] $data['paypal_keys'] = json_encode($paypal_info);
|
| [76] 'public_live_key' => html_escape($this->input->post('stripe_public_key')),
|
| [77] 'secret_live_key' => html_escape($this->input->post('stripe_secret_key'))
|
| [80] $data['stripe_keys'] = json_encode($stripe_info);
|
| [129] $data['paypal_keys'] = json_encode($paypal_info);
|
| [135] 'secret_live_key' => ''
|
| [138] $data['stripe_keys'] = json_encode($stripe_info);
|
| [204] $paypal['production_secret_key'] = html_escape($this->input->post('paypal_secret_key'));
|
| [206] $data['paypal_keys'] = json_encode($paypal_info);
|
| [210] 'public_live_key' => html_escape($this->input->post('stripe_public_key')),
|
| [211] 'secret_live_key' => html_escape($this->input->post('stripe_secret_key'))
|
| [214] $data['stripe_keys'] = json_encode($stripe_info);
|
| [412] $paypal['production_secret_key'] = html_escape($this->input->post('paypal_secret_key'));
|
| [414] $data['paypal_keys'] = json_encode($paypal_info);
|
| [423] 'public_live_key' => html_escape($this->input->post('stripe_public_key')),
|
| [424] 'secret_live_key' => html_escape($this->input->post('stripe_secret_key'))
|
| [427] $data['stripe_keys'] = json_encode($stripe_info);
|
- Source File : i_academy/application/models/Video_model.php
| [30] // get api key from system settings
|
| [31] $api_key = get_settings('youtube_api_key');
|
| [59] $vimeo_api_key = get_settings('vimeo_api_key');
|
| [60] $youtube_api_key = get_settings('youtube_api_key');
|
| [86] $hash = json_decode(file_get_contents("https://www.googleapis.com/youtube/v3/videos?part=snippet,contentDetails&id=".$video_id."&key=".$youtube_api_key.""));
|
- Source File : i_academy/application/views/backend/header.php
| [114] <h4 style="color: #fff; float: left;"> <?php echo $this->db->get_where('settings' , array('key'=>'system_name'))->row()->value; ?></h4>
|
- Source File : i_academy/application/views/backend/index.php
| [2] $system_name = $this->db->get_where('settings' , array('key'=>'system_name'))->row()->value;
|
| [3] $system_title = $this->db->get_where('settings' , array('key'=>'system_title'))->row()->value;
|
| [5] $text_align = $this->db->get_where('settings', array('key' => 'text_align'))->row()->value;
|
- Source File : i_academy/application/views/backend/admin/about.php
| [9] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('about_this_application'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/admins.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo $page_title; ?>
|
- Source File : i_academy/application/views/backend/admin/admin_add.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo $page_title; ?>
|
- Source File : i_academy/application/views/backend/admin/admin_edit.php
| [9] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo $page_title; ?>
|
- Source File : i_academy/application/views/backend/admin/admin_permission.php
| [13] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo ucwords($page_title); ?>
|
- Source File : i_academy/application/views/backend/admin/admin_revenue.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('admin_revenue'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/application_list.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('instructor_applications'); ?></h4>
|
| [46] <?php foreach ($pending_applications->result_array() as $key => $pending_application):
|
| [112] <?php foreach ($approved_applications->result_array() as $key => $approved_application):
|
- Source File : i_academy/application/views/backend/admin/available_addon.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('available_addons'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/categories.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('categories'); ?>
|
- Source File : i_academy/application/views/backend/admin/category_add.php
| [6] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('add_new_category'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/category_edit.php
| [9] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('update_category'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/coupons.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo $page_title; ?>
|
- Source File : i_academy/application/views/backend/admin/coupon_add.php
| [6] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo $page_title; ?>
|
- Source File : i_academy/application/views/backend/admin/coupon_edit.php
| [6] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo $page_title; ?>
|
- Source File : i_academy/application/views/backend/admin/courses-server-side.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('courses'); ?>
|
- Source File : i_academy/application/views/backend/admin/courses.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('courses'); ?>
|
- Source File : i_academy/application/views/backend/admin/course_add.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('add_new_course'); ?></h4>
|
| [21] <a href="<?php echo site_url('admin/courses'); ?>" class="alignToTitle btn btn-outline-secondary btn-rounded btn-sm my-1"> <i class=" mdi mdi-keyboard-backspace"></i> <?php echo get_phrase('back_to_course_list'); ?></a>
|
| [270] <input type="number" class="form-control" name="discounted_price" id="discounted_price" onkeyup="calculateDiscountPercentage(this.value)" min="0">
|
| [312] <label class="col-md-2 col-form-label" for="website_keywords"><?php echo get_phrase('meta_keywords'); ?></label>
|
| [314] <input type="text" class="form-control bootstrap-tag-input" id = "meta_keywords" name="meta_keywords" data-role="tagsinput" style="width: 100%;" placeholder="<?php echo get_phrase('write_a_keyword_and_then_press_enter_button'); ?>"./>
|
- Source File : i_academy/application/views/backend/admin/course_add_shortcut.php
| [78] <input type="number" class="form-control" name="discounted_price" id="discounted_price" onkeyup="calculateDiscountPercentage(this.value)" min="0">
|
- Source File : i_academy/application/views/backend/admin/course_edit.php
| [8] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('update') . ': ' . $course_details['title']; ?></h4>
|
| [25] <a href="<?php echo site_url('admin/courses'); ?>" class="alignToTitle btn btn-outline-secondary btn-rounded btn-sm my-1"> <i class=" mdi mdi-keyboard-backspace"></i> <?php echo get_phrase('back_to_course_list'); ?></a>
|
| [212] <?php foreach ($instructors as $key => $instructor) : ?>
|
| [452] <input type="number" class="form-control" name="discounted_price" id="discounted_price" onkeyup="calculateDiscountPercentage(this.value)" value="<?php echo $course_details['discounted_price']; ?>" min="0">
|
| [494] <label class="col-md-2 col-form-label" for="website_keywords"><?php echo get_phrase('meta_keywords'); ?></label>
|
| [496] <input type="text" ..
|
- Source File : i_academy/application/views/backend/admin/dashboard.php
| [12] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('dashboard'); ?></h4>
|
| [130] foreach ($pending_payouts as $key => $pending_payout):
|
- Source File : i_academy/application/views/backend/admin/enrol_history.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('enrol_history'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/enrol_student.php
| [6] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('enrol_a_student'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/frontend_settings.php
| [8] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('website_settings'); ?></h4>
|
| [83] <label for="recaptcha_sitekey"><?php echo get_phrase('recaptcha_sitekey'); ?> (v2)<span class="required">*</span></label>
|
| [84] <input type="text" name = "recaptcha_sitekey" id = "recaptcha_sitekey" class="form-control" value="<?php echo get_frontend_settings('recaptcha_sitekey'); ?>" required>
|
| [88] <label for="recaptcha_secretkey"><?php echo get_phrase('recaptcha_secretkey'); ?> (v2)<span class="required">*</span></label>
|
| [89] <input type="text" name = "recaptcha_secretkey" id = "recaptcha_secretkey" class="form-control" value="<?php echo get_frontend_settings('recaptcha_secretkey'); ?>" required>
|
- Source File : i_academy/application/views/backend/admin/instructors.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo $page_title; ?>
|
- Source File : i_academy/application/views/backend/admin/instructor_add.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo $page_title; ?> </h4>
|
| [147] <label class="col-md-3 col-form-label" for="paypal_secret_key"> <?php echo get_phrase('paypal_secret_key'); ?></label>
|
| [149] <input type="text" id="paypal_secret_key" name="paypal_secret_key" class="form-control">
|
| [154] <label class="col-md-3 col-form-label" for="stripe_public_key"><?php echo get_phrase('stripe_public_key'); ?></label>
|
| [156] <input type="text" id="stripe_public_key" name="stripe_public_key" class="form-control">
|
| [161] <label class="col-md-3 col-form-label" for="stripe_secret_key"><?php echo get_phrase('stripe_secret_key'); ?></label>
|
| [163] <input type="text" id="stripe_secret_key" name="stripe_secret_key" class="form-control">
|
- Source File : i_academy/application/views/backend/admin/instructor_edit.php
| [9] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo $page_title; ?> </h4>
|
| [142] $paypal_keys = json_decode($user_data['paypal_keys'], true);
|
| [143] $stripe_keys = json_decode($user_data['stripe_keys'], true);
|
| [151] <input type="text" id="paypal_client_id" name="paypal_client_id" class="form-control" value="<?php echo $paypal_keys[0]['production_client_id']; ?>">
|
| [158] <input type="text" id="paypal_secret_key" name="paypal_secret_key" class="form-control" value="<?php echo $paypal_keys[0]['production_secret_key']; ?>">
|
| [163] <label class="col-md-3 col-form-label" for="stripe_public_key"><?php echo get_phrase('stripe_public_key'); ?></label>
|
| [165] <input type="text" id="stripe_public_key" name="stripe_public_key" class="form-control" value="<?php echo $stripe_keys[0]['public_live_key']; ?>">
|
| [170] <label class="col-md-3 col-form-label" for="stripe_secret_key"><?php echo get_phrase('stripe_secret_key'); ?></label>
|
| [172] <input type="text" id="stripe_secret_key" name="stripe_secret_key" class="form-control" value="<?php echo $stripe_keys[0]['secret_live_key']; ?>">
|
- Source File : i_academy/application/views/backend/admin/instructor_payout.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('instructor_payouts'); ?></h4>
|
| [66] <?php foreach ($completed_payouts->result_array() as $key => $completed_payout):
|
| [101] <?php foreach ($pending_payouts->result_array() as $key => $pending_payout):
|
| [103] $paypal_keys = json_decode($pending_payout_user_data['paypal_keys'], true);
|
| [104] $stripe_keys = json_decode($pending_payout_user_data['stripe_keys'], true);
|
| [118] <?php if ($paypal_keys[0]['production_client_id'] != ""): ?>
|
| [123] <input type="hidden" name="production_client_id" value="<?php echo $paypal_keys[0]['production_client_id']; ?>">
|
| [129] <?php if ($stripe_keys[0]['public_live_key'] != "" && $stripe_keys[0]['secret_live_key']): ?>
|
| [132] <button type="button" cla..
|
- Source File : i_academy/application/views/backend/admin/instructor_revenue.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('instructor_revenue'); ?></h4>
|
| [31] $paypal_keys = json_decode($user_data['paypal_keys'], true);
|
| [32] $stripe_keys = json_decode($user_data['stripe_keys'], true);
|
- Source File : i_academy/application/views/backend/admin/instructor_settings.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('instructor_settings'); ?></h4>
|
| [51] <input type="number" name = "instructor_revenue" id = "instructor_revenue" class="form-control" onkeyup="calculateAdminRevenue(this.value)" min="0" max="100" value="<?php echo get_settings('instructor_revenue'); ?>">
|
- Source File : i_academy/application/views/backend/admin/invoice.php
| [6] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('invoice'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/logs.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo $page_title; ?>
|
- Source File : i_academy/application/views/backend/admin/manage_language.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('manage_language'); ?></h4>
|
| [54] <button type="button" class="btn btn-icon btn-primary" style="float: right;" id = "btn-<?php echo $key; ?>" onclick="updatePhrase('<?php echo $key; ?>')"> <i class = "mdi mdi-check-circle"></i> </button>
|
| [146] $('#btn-'+key).html('<i class = "mdi mdi-check-circle"></i>');
|
- Source File : i_academy/application/views/backend/admin/manage_profile.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('manage_profile'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/message.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('private_message'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/password_resets.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo $page_title; ?>
|
- Source File : i_academy/application/views/backend/admin/payment_settings.php
| [4]$stripe_settings = $this->db->get_where('settings', array('key' => 'stripe_keys'))->row()->value;
|
| [12] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('setup_payment_informations'); ?></h4>
|
| [101] <label><?php echo get_phrase('secret_key').' ('.get_phrase('sandbox').')'; ?></label>
|
| [103] <input type="text" name="sandbox_secret_key" class="form-control" value="<?php echo $paypal[0]->sandbox_secret_key;?>" required />
|
| [105] <input type="text" name="sandbox_secret_key" class="form-control" placeholder="<?php echo get_phrase('no_secret_key_found'); ?>" required />
|
| [115] <label><?php echo get_phrase('secret_key').' ('.get_phrase('production').')'; ?></label>
|
| [117] <input type="text" name="production_secret_key" class="form-control" value="<?php echo $paypal[0]->production_secret_key;?>" required />
|
| [119] <input type="text" name="production_secret_key" class="form-control" placeholder="<?php echo get_phrase('no_secret_key_found'); ?>" required />
|
| [170] <input type="text" name="secret_key" class="form-control" value="<?php echo $stripe[0]->secret_key;?>" required />
|
| [175] <input type="text" name="public_key" class="form-control" value="<?php echo $stripe[0]->public_key;?>" required />
|
| [180] <input type="text" name="secret_live_key" class="form-control" value="<?php echo $stripe[0]->secret_live_key;?>" required />
|
| [185] <input type="text" name="public_live_key" class="form-control" value="<?php echo $stripe[0]->public_live_key;?>" required />
|
- Source File : i_academy/application/views/backend/admin/paypal_checkout_for_instructor_revenue.php
| [14] $paypal_keys = get_settings('paypal');
|
- Source File : i_academy/application/views/backend/admin/smtp_settings.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('smtp_settings'); ?></h4>
|
- Source File : i_academy/application/views/backend/admin/stripe_checkout_for_instructor_revenue.php
| [3]$stripe_keys = json_decode($user_details['stripe_keys'], true);
|
| [12]define('STRIPE_API_KEY', $stripe_keys[0]['secret_live_key']);
|
| [13]define('STRIPE_PUBLISHABLE_KEY', $stripe_keys[0]['public_live_key']);
|
- Source File : i_academy/application/views/backend/admin/stripe_payment_gateway_form.php
| [3] define('STRIPE_API_KEY', $stripe_keys[0]['secret_live_key']);
|
| [4] define('STRIPE_PUBLISHABLE_KEY', $stripe_keys[0]['public_live_key']);
|
| [44]// Specify Stripe publishable key to initialize Stripe.js
|
- Source File : i_academy/application/views/backend/admin/system_settings.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('system_settings'); ?></h4>
|
| [30] <label for="website_keywords"><?php echo get_phrase('website_keywords'); ?></label>
|
| [31] <input type="text" class="form-control bootstrap-tag-input" id = "website_keywords" name="website_keywords" data-role="tagsinput" style="width: 100%;" value="<?php echo get_settings('website_keywords'); ?>"/>
|
| [65] <label for="youtube_api_key"><?php echo get_phr.. [66] <input type="text" name = "youtube_api_key" id = "youtube_api_key" class="form-control" value="<?php echo get_settings('youtube_api_key'); ?>" required>
|
| [70] <label for="vimeo_api_key"><?php echo get_phrase('vimeo_API_key'); ?><span class="required">*</span> <a href = "https://www.youtube.com/watch?v=Wwy9aibAd54" target = "_blank" style="color: #a7a4a4">(<?php echo get_phrase('get_Vimeo_API_key'); ?>)</a></label>
|
| [71] <input type="text" name = "vimeo_api_key" id = "vimeo_api_key" class="form-control" value="<?php echo get_settings('vimeo_api_key'); ?>" required>
|
- Source File : i_academy/application/views/backend/admin/theme_settings.php
| [7]<?php foreach ($uninstalled_themes as $key => $uninstalled_theme) : ?>
|
| [18] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('theme_settings'); ?>
|
| [52] <?php foreach ($installed_themes as $key => $installed_theme) : ?>
|
- Source File : i_academy/application/views/backend/admin/users.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo $page_title; ?>
|
- Source File : i_academy/application/views/backend/admin/user_add.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo $page_title; ?> </h4>
|
| [147] <label class="col-md-3 col-form-label" for="paypal_secret_key"> <?php echo get_phrase('paypal_secret_key'); ?></label>
|
| [149] <input type="text" id="paypal_secret_key" name="paypal_secret_key" class="form-control">
|
| [154] <label class="col-md-3 col-form-label" for="stripe_public_key"><?php echo get_phrase('stripe_public_key'); ?></label>
|
| [156] <input type="text" id="stripe_public_key" name="stripe_public_key" class="form-control">
|
| [161] <label class="col-md-3 col-form-label" for="stripe_secret_key"><?php echo get_phrase('stripe_secret_key'); ?></label>
|
| [163] <input type="text" id="stripe_secret_key" name="stripe_secret_key" class="form-control">
|
- Source File : i_academy/application/views/backend/admin/user_edit.php
| [9] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo $page_title; ?> </h4>
|
| [142] $paypal_keys = json_decode($user_data['paypal_keys'], true);
|
| [143] $stripe_keys = json_decode($user_data['stripe_keys'], true);
|
| [151] <input type="text" id="paypal_client_id" name="paypal_client_id" class="form-control" value="<?php echo $paypal_keys[0]['production_client_id']; ?>">
|
| [158] <?php if (isset($paypal_keys[0]['production_secret_key'])): ?>
|
| [159] <input type="text" id="paypal_secret_key" name="paypal_secret_key" class="form-control" value="<?php echo $paypal_keys[0]['production_secret_key']; ?>">
|
| [161] <input type="text" id="paypal_secret_key" name="paypal_secret_key" class="form-control" placeholder="<?php echo get_phrase('no_secret_key_found'); ?>">
|
| [167] <label class="col-md-3 col-form-label" for="stripe_public_key"><?php echo get_phrase('stripe_public_key'); ?></label>
|
| [169] <input type="text" id="stripe_public_key" name="stripe_public_key" class="form-control" value="<?php echo $stripe_keys[0]['public_live_key']; ?>">
|
| [174] <label class="col-md-3 col-form-label" for="stripe_secret_key"><?php echo get_phrase('stripe_secret_key'); ?></label>
|
| [176] <input type="text" id="stripe_secret_key" name="stripe_secret_key" class="form-control" value="<?php echo $stripe_keys[0]['secret_live_key']; ?>">
|
- Source File : i_academy/application/views/backend/user/application_list.php
| [14] <?php foreach ($applications->result_array() as $key => $application):
|
- Source File : i_academy/application/views/backend/user/become_an_instructor.php
| [8] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('become_an_instructor'); ?></h4>
|
- Source File : i_academy/application/views/backend/user/courses-server-side.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('courses'); ?>
|
- Source File : i_academy/application/views/backend/user/courses.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('courses'); ?>
|
- Source File : i_academy/application/views/backend/user/course_add.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('add_new_course'); ?></h4>
|
| [21] <a href="<?php echo site_url('user/courses'); ?>" class="alignToTitle btn btn-outline-secondary btn-rounded btn-sm my-1"> <i class=" mdi mdi-keyboard-backspace"></i> <?php echo get_phrase('back_to_course_list'); ?></a>
|
| [271] <input type="number" class="form-control" name="discounted_price" id="discounted_price" onkeyup="calculateDiscountPercentage(this.value)" min="0">
|
| [313] <label class="col-md-2 col-form-label" for="website_keywords"><?php echo get_phrase('meta_keywords'); ?></label>
|
| [315] <input type="text" class="form-control bootstrap-tag-input" id = "meta_keywords" name="meta_keywords" data-role="tagsinput" style="width: 100%;" placeholder="<?php echo get_phrase('write_a_keyword_and_then_press_enter_button'); ?>"./>
|
- Source File : i_academy/application/views/backend/user/course_add_shortcut.php
| [78] <input type="number" class="form-control" name="discounted_price" id="discounted_price" onkeyup="calculateDiscountPercentage(this.value)" min="0">
|
- Source File : i_academy/application/views/backend/user/course_edit.php
| [8] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('update') . ': ' . $course_details['title']; ?></h4>
|
| [25] <a href="<?php echo site_url('user/courses'); ?>" class="alignToTitle btn btn-outline-secondary btn-rounded btn-sm my-1"> <i class=" mdi mdi-keyboard-backspace"></i> <?php echo get_phrase('back_to_course_list'); ?></a>
|
| [212] <?php foreach ($instructors as $key => $instructor) : ?>
|
| [453] <input type="number" class="form-control" name="discounted_price" id="discounted_price" onkeyup="calculateDiscountPercentage(this.value)" value="<?php echo $course_details['discounted_price']; ?>" min="0">
|
| [495] <label class="col-md-2 col-form-label" for="website_keywords"><?php echo get_phrase('meta_keywords'); ?></label>
|
| [497] <input type="text" ..
|
- Source File : i_academy/application/views/backend/user/dashboard.php
| [18] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('dashboard'); ?></h4>
|
- Source File : i_academy/application/views/backend/user/invoice.php
| [6] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('invoice'); ?></h4>
|
- Source File : i_academy/application/views/backend/user/payment_settings.php
| [3]$paypal_keys = json_decode($user_data['paypal_keys'], true);
|
| [4]$stripe_keys = json_decode($user_data['stripe_keys'], true);
|
| [11] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('setup_payment_informations'); ?></h4>
|
| [27] <input type="text" name="paypal_client_id" class="form-control" value="<?php echo $paypal_keys[0]['production_client_id']; ?>" required />
|
| [31] <label><?php echo get_phrase('secret_key').' ('.get_phrase('production').')'; ?></label>
|
| [32] <?php if (isset($paypal_keys[0]['production_secret_key'])): ?>
|
| [33] <input type="text" name="paypal_secret_key" class="form-control" value="<?php echo $paypal_keys[0]['production_secret_key']; ?>" required />
|
| [35] <input type="text" name="paypal_secret_key" class="form-control" placeholder="<?php echo get_phrase('no_secret_key_found'); ?>" required />
|
| [56] <input type="text" name="stripe_secret_key" class="form-control" value="<?php echo $stripe_keys[0]['secret_live_key']; ?>" required />
|
| [61] <input type="text" name="stripe_public_key" class="form-control" value="<?php echo $stripe_keys[0]['public_live_key']; ?>" required />
|
- Source File : i_academy/application/views/backend/user/payout_report.php
| [6] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('payout_report'); ?>
|
- Source File : i_academy/application/views/backend/user/sales_report.php
| [6] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo get_phrase('sales_report'); ?></h4>
|
- Source File : i_academy/application/views/backend/user/users.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo $page_title; ?>
|
- Source File : i_academy/application/views/backend/user/user_add.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo $page_title; ?> </h4>
|
| [147] <label class="col-md-3 col-form-label" for="paypal_secret_key"> <?php echo get_phrase('paypal_secret_key'); ?></label>
|
| [149] <input type="text" id="paypal_secret_key" name="paypal_secret_key" class="form-control">
|
| [154] <label class="col-md-3 col-form-label" for="stripe_public_key"><?php echo get_phrase('stripe_public_key'); ?></label>
|
| [156] <input type="text" id="stripe_public_key" name="stripe_public_key" class="form-control">
|
| [161] <label class="col-md-3 col-form-label" for="stripe_secret_key"><?php echo get_phrase('stripe_secret_key'); ?></label>
|
| [163] <input type="text" id="stripe_secret_key" name="stripe_secret_key" class="form-control">
|
- Source File : i_academy/application/views/backend/user/user_edit.php
| [9] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo $page_title; ?> </h4>
|
| [142] $paypal_keys = json_decode($user_data['paypal_keys'], true);
|
| [143] $stripe_keys = json_decode($user_data['stripe_keys'], true);
|
| [151] <input type="text" id="paypal_client_id" name="paypal_client_id" class="form-control" value="<?php echo $paypal_keys[0]['production_client_id']; ?>">
|
| [158] <?php if (isset($paypal_keys[0]['production_secret_key'])): ?>
|
| [159] <input type="text" id="paypal_secret_key" name="paypal_secret_key" class="form-control" value="<?php echo $paypal_keys[0]['production_secret_key']; ?>">
|
| [161] <input type="text" id="paypal_secret_key" name="paypal_secret_key" class="form-control" placeholder="<?php echo get_phrase('no_secret_key_found'); ?>">
|
| [167] <label class="col-md-3 col-form-label" for="stripe_public_key"><?php echo get_phrase('stripe_public_key'); ?></label>
|
| [169] <input type="text" id="stripe_public_key" name="stripe_public_key" class="form-control" value="<?php echo $stripe_keys[0]['public_live_key']; ?>">
|
| [174] <label class="col-md-3 col-form-label" for="stripe_secret_key"><?php echo get_phrase('stripe_secret_key'); ?></label>
|
| [176] <input type="text" id="stripe_secret_key" name="stripe_secret_key" class="form-control" value="<?php echo $stripe_keys[0]['secret_live_key']; ?>">
|
- Source File : i_academy/application/views/frontend/default/admin_login.php
| [49] <div class="g-recaptcha" data-sitekey="<?php echo get_frontend_settings('recaptcha_sitekey'); ?>"></div>
|
- Source File : i_academy/application/views/frontend/default/animated-page-loader.php
| [2] @keyframes placeHolderShimmer {
|
- Source File : i_academy/application/views/frontend/default/category_wise_course_grid_layout.php
| [16] <?php foreach ($instructors as $key => $instructor) : ?>
|
| [18] <?php echo $key + 1 == count($instructors) ? '' : ', '; ?>
|
- Source File : i_academy/application/views/frontend/default/category_wise_course_list_layout.php
| [15] <?php foreach ($instructors as $key => $instructor) : ?>
|
- Source File : i_academy/application/views/frontend/default/course_page.php
| [43] <?php foreach ($instructors as $key => $instructor) : ?>
|
| [45] <?php echo $key + 1 == count($instructors) ? '' : ', '; ?>
|
| [233] <?php foreach ($instructors as $key => $instructor) : ?>
|
| [533] <div class="modal fade" id="CoursePreviewModal" tabindex="-1" role="dialog" aria-hidden="true" data-keyboard="false" data-backdrop="static">
|
- Source File : i_academy/application/views/frontend/default/create_course.php
| [83] $current_default_language = $this->db->get_where('settings' , array('key'=>'language'))->row()->value;?>
|
| [148] <input type="number" id = "price" name = "price" class="form-control" required onkeyup="calculateDiscountPercentage($('#discounted_price').val())" min="0">
|
| [162] <input type="number" name = "discounted_price" id ="discounted_price" class="form-control" onkeyup="calculateDiscountPercentage(this.value)" min="0">
|
| [193] <label class="form-label" for = "meta_keywords"><?php echo site_phrase('meta_keywords'); ?></label>
|
- Source File : i_academy/application/views/frontend/default/edit_course.php
| [155] <input type="number" id = "price" name = "price" class="form-control" required value="<?php echo $course_details['price']; ?>" onkeyup="calculateDiscountPercentage($('#discounted_price').val())" min="0">
|
| [169] <input type="number" name = "discounted_price" id = "discounted_price" class="form-control" onkeyup="calculateDiscountPercentage(this.value)" value="<?php echo $course_details['discounted_price']; ?>" min="0">
|
| [200] <label class="form-label" for = "meta_keywords"><?php echo site_phrase('meta_keywords'); ?></label>
|
| [202] <input type="text" class="form-control tagsInput" name="meta_keywords" value="<?php echo $course_details['meta_keywords'] ?>">
|
- Source File : i_academy/application/views/frontend/default/home.php
| [234] foreach ($instructor_details as $key => $instructor_detail) {
|
| [236] echo $key + 1 == count($instructor_details) ? '' : ', ';
|
- Source File : i_academy/application/views/frontend/default/index.php
| [23] <meta name="keywords" content="<?php echo $course_details['meta_keywords']; ?>"/>
|
| [26] <meta name="keywords" content="<?php echo get_settings('website_keywords'); ?>"/>
|
- Source File : i_academy/application/views/frontend/default/login.php
| [49] <div class="g-recaptcha" data-sitekey="<?php echo get_frontend_settings('recaptcha_sitekey'); ?>"></div>
|
| [92] <div class="g-recaptcha" data-sitekey="<?php echo get_frontend_settings('recaptcha_sitekey'); ?>"></div>
|
| [121] <div class="g-recaptcha" data-sitekey="<?php echo get_frontend_settings('recaptcha_sitekey'); ?>"></div>
|
- Source File : i_academy/application/views/frontend/default/menu.php
| [19] foreach ($categories as $key => $category):?>
|
- Source File : i_academy/application/views/frontend/default/my_courses.php
| [45] <input type="text" class="form-control" placeholder="<?php echo site_phrase('search_my_courses'); ?>" onkeyup="getCoursesBySearchString(this.value)">
|
- Source File : i_academy/application/views/frontend/default/my_wishlist.php
| [10] <input type="text" class="form-control" placeholder="<?php echo site_phrase('search_my_courses'); ?>" onkeyup="getMyWishListsBySearchString(this.value)">
|
| [54] <?php foreach ($instructors as $key => $instructor) : ?>
|
| [56] <?php echo $key + 1 == count($instructors) ? '' : ', '; ?>
|
- Source File : i_academy/application/views/frontend/default/payment_settings.php
| [3] $paypal_keys = json_decode($user_data['paypal_keys'], true);
|
| [4] $stripe_keys = json_decode($user_data['stripe_keys'], true);
|
| [21] <input type="text" class="form-control" name = "paypal_client_id" id="paypal_client_id" placeholder="<?php echo site_phrase('paypal_client_id'); ?>" value="<?php echo $paypal_keys[0]['production_client_id']; ?>">
|
| [27] <input type="text" class="form-control" name = "stripe_public_key" id="stripe_public_key" placeholder="<?php echo site_phrase('stripe_public_key'); ?>" value="<?php echo $stripe_keys[0]['public_live_key']; ?>">
|
| [33] <input type="text" class="form-control" name = "stripe_secret_key" id="stripe_secret_key" placeholder="<?php echo site_phrase('stripe_secret_key'); ?>" value="<?php echo $stripe_keys[0]['secret_live_key']; ?>">
|
- Source File : i_academy/application/views/frontend/default/paypal_checkout.php
| [13] $paypal_keys = get_settings('paypal');
|
- Source File : i_academy/application/views/frontend/default/profile_index.php
| [23] <meta name="keywords" content="<?php echo $course_details['meta_keywords']; ?>"/>
|
| [26] <meta name="keywords" content="<?php echo get_settings('website_keywords'); ?>"/>
|
- Source File : i_academy/application/views/frontend/default/reload_my_wishlists.php
| [37] <?php foreach ($instructors as $key => $instructor) : ?>
|
| [39] <?php echo $key + 1 == count($instructors) ? '' : ', '; ?>
|
- Source File : i_academy/application/views/frontend/default/request_API_token.php
| [36] <form action="<?php echo site_url('login/validate_API_token_login/user'); ?>" method="post" id="adminlogin">
|
| [49] <div class="g-recaptcha" data-sitekey="<?php echo get_frontend_settings('recaptcha_sitekey'); ?>"></div>
|
- Source File : i_academy/application/views/frontend/default/reset_password.php
| [49] <div class="g-recaptcha" data-sitekey="<?php echo get_frontend_settings('recaptcha_sitekey'); ?>"></div>
|
- Source File : i_academy/application/views/frontend/default/shopping_cart.php
| [46] <?php foreach ($instructors as $key => $instructor) : ?>
|
- Source File : i_academy/application/views/frontend/default/sign_up.php
| [50] <div class="g-recaptcha" data-sitekey="<?php echo get_frontend_settings('recaptcha_sitekey'); ?>"></div>
|
| [94] <div class="g-recaptcha" data-sitekey="<?php echo get_frontend_settings('recaptcha_sitekey'); ?>"></div>
|
| [123] <div class="g-recaptcha" data-sitekey="<?php echo get_frontend_settings('recaptcha_sitekey'); ?>"></div>
|
- Source File : i_academy/application/views/frontend/default/sign_up_password.php
| [50] <div class="g-recaptcha" data-sitekey="<?php echo get_frontend_settings('recaptcha_sitekey'); ?>"></div>
|
| [94] <div class="g-recaptcha" data-sitekey="<?php echo get_frontend_settings('recaptcha_sitekey'); ?>"></div>
|
| [123] <div class="g-recaptcha" data-sitekey="<?php echo get_frontend_settings('recaptcha_sitekey'); ?>"></div>
|
- Source File : i_academy/application/views/frontend/default/stripe_checkout.php
| [14] $stripe_keys = get_settings('stripe_keys');
|
| [17] $public_key = $values[0]->public_key;
|
| [18] $private_key = $values[0]->secret_key;
|
| [20] $public_key = $values[0]->public_live_key;
|
| [21] $private_key = $values[0]->secret_live_key;
|
| [26] var stripe_key = '<?php echo $public_key;?>';
|
- Source File : i_academy/application/views/frontend/default/users.php
| [5] <h4 class="page-title"> <i class="mdi mdi-apple-keyboard-command title_icon"></i> <?php echo $page_title; ?>
|
- Source File : i_academy/application/views/frontend/default/wishlist_items.php
| [31] <?php foreach ($instructors as $key => $instructor) : ?>
|
| [33] <?php echo $key + 1 == count($instructors) ? '' : ', '; ?>
|
- Source File : i_academy/application/views/lessons/index.php
| [23] <meta name="keywords" content="<?php echo $course_details['meta_keywords']; ?>"/>
|
| [26] <meta name="keywords" content="<?php echo get_settings('website_keywords'); ?>"/>
|
- Source File : i_academy/application/views/lessons/quiz_view.php
| [15] <?php foreach ($quiz_questions->result_array() as $key => $quiz_question):
|
| [24] <h6 class="card-title"><?php echo get_phrase("question").' '.($key+1); ?> : <strong><?php echo $quiz_question['title']; ?></strong></h6>
|
| [31] <input class="form-check-input".. [42] <button type="button" name="button" class="btn btn-sign..
|
- Source File : i_academy/application/views/mobile/quiz.php
| [19] <?php foreach ($quiz_questions->result_array() as $key => $quiz_question):
|
| [28] <h6 class="card-title"><?php echo get_phrase("question").' '.($key+1); ?> : <strong><?php echo $quiz_question['title']; ?></strong></h6>
|
| [35] <input class="form-check-in.. [46] <button type="button" name="button" class="btn btn-sign..
|
- Source File : i_academy/application/views/mobile/stripe/stripe_payment_gateway_form.php
| [3] $stripe_keys = get_settings('stripe_keys');
|
| [6] $public_key = $values[0]->public_key;
|
| [7] $private_key = $values[0]->secret_key;
|
| [9] $public_key = $values[0]->public_live_key;
|
| [10] $private_key = $values[0]->secret_live_key;
|
| [52]// Specify Stripe publishable key to initialize Stripe.js
|
- Source File : i_academy/application/views/payment/index.php
| [11] <meta name="keywords" content="<?php echo get_settings('website_keywords'); ?>"/>
|
- Source File : i_academy/application/views/payment/stripe/stripe_checkout.php
| [3]$stripe_keys = get_settings('stripe_keys');
|
| [17] define('STRIPE_API_KEY', $values[0]->secret_live_key);
|
- Source File : i_academy/application/views/payment/stripe/stripe_payment_gateway_form.php
| [3] $stripe_keys = get_settings('stripe_keys');
|
| [6] $public_key = $values[0]->public_key;
|
| [7] $private_key = $values[0]->secret_key;
|
| [9] $public_key = $values[0]->public_live_key;
|
| [10] $private_key = $values[0]->secret_live_key;
|
| [52]// Specify Stripe publishable key to initialize Stripe.js
|
- Source File : i_academy/system/core/CodeIgniter.php
| [114] foreach (array('E' => '_ENV', 'G' => '_GET', 'P' => '_POST', 'C' => '_COOKIE', 'S' => '_SERVER') as $key => $superglobal)
|
| [121] foreach (array_keys($$superglobal) as $var)
|
- Source File : i_academy/system/core/Common.php
| [755] $var[$key] = html_escape($var[$key], $double_encode);
|
| [797] $atts .= ($js) ? $key.'='.$val.',' : ' '.$key.'="'.$val.'"';
|
- Source File : i_academy/system/core/Input.php
| [190] $output[$key] = $this->_fetch_from_array($array, $key, $xss_clean);
|
| [206] if ($key === '') // Empty notation will return the value as array
|
| [273] $purchase_code = $CI->db->get_where('settings' , array('key' => 'purchase_code'))->row()->value;
|
| [352] $purchase_code = $CI->db->get_where('settings' , array('key' => 'purchase_code'))->row()->value;
|
| [691] $_GET[$this->_clean_input_keys($key)] = $this->_clean_input_data($val);
|
| [700] $_POST[$this->_clean_input_keys($key)] = $this->_clean_input_data($val);
|
| [720] if (($cookie_key = $this->_clean_input_keys($key)) !== FALSE)
|
| [722] $_COOKIE[$cookie_key] = $this->_clean_input_data($val);
|
| [755] $new_array[$this->_clean_input_keys($key)] = $this->_clean_input_data($str[$key]);
|
| [800] * key is encountered
|
- Source File : i_academy/system/core/Loader.php
| [562] * @param string $key Variable name
|
| [567] return isset($this->_ci_cached_vars[$key]) ? $this->_ci_cached_vars[$key] : NULL;
|
| [840] if (($key = array_search($path, $this->{$var})) !== FALSE)
|
| [851] if (($key = array_search($path, $config->_config_paths)) !== FALSE)
|
| [1375] * variable names (i.e. keys prefixed with '_ci_').
|
- Source File : i_academy/system/core/Output.php
| [573] $uri .= '?'.http_build_query(array_intersect_key($_GET, array_flip($cache_query_string)));
|
| [667] $uri .= '?'.http_build_query(array_intersect_key($_GET, array_flip($cache_query_string)));
|
| [755] $uri .= '?'.http_build_query(array_intersect_key($_GET, array_flip($cache_query_string)));
|
- Source File : i_academy/system/core/Router.php
| [384] $val = array_change_key_case($val, CASE_LOWER);
|
| [396] $key = str_replace(array(':any', ':num'), array('[^/]+', '[0-9]+'), $key);
|
- Source File : i_academy/system/core/Security.php
| [119] protected $_csrf_token_name = 'ci_csrf_token';
|
| [178] foreach (array('csrf_expire', 'csrf_token_name', 'csrf_cookie_name') as $key)
|
| [229] // Check CSRF token validity, but don't error on mismatch just yet - we'll want to regenerate
|
| [230] $valid = isset($_POST[$this->_csrf_token_name], $_COOKIE[$this->_csrf_cookie_name])
|
| [231] && hash_equals($_POST[$this->_csrf_token_name], $_COOKIE[$this->_csrf_cookie_name]);
|
| [252] log_message('info', 'CSRF token verified');
|
| [361] $str[$key] = $this->xss_clean($value);
|
| [724] $str = str_replace(array_keys($replace), array_values($replace), $str);
|
| [736] $str = str_replace(array_values($_entities), array_keys($_entities), $str);
|
| [1050] $str = str_replace(array_keys($this->_never_allowed_str), $this->_never_allowed_str, $str);
|
- Source File : i_academy/system/core/URI.php
| [419] * Generates a key/value pair from the URI string or re-routed URI string.
|
- Source File : i_academy/system/core/compat/hash.php
| [182] // (i.e. prepare HMAC key) to mitigate potential DoS attacks.
|
| [235] $key = $derived_key = hash_hmac($algo, $salt.pack('N', $bi), $password, TRUE);
|
| [238] $derived_key ^= $key = hash_hmac($algo, $key, $password, TRUE);
|
- Source File : i_academy/system/core/compat/standard.php
| [70] function array_column(array $array, $column_key, $index_key = NULL)
|
| [76] $column_key = (int) $column_key;
|
| [78] elseif ($type === 'object' && method_exists($column_key, '__toString'))
|
| [80] $column_key = (string) $column_key;
|
| [84] trigger_error('array_column(): The column key should be either a string or an integer', E_USER_WARNING);
|
| [93] $index_key = (int) $index_key;
|
| [95] elseif ($type === 'object' && method_exists($index_key, '__toString'))
|
| [97] $index_key = (string) $index_key;
|
| [101] trigger_error('array_column(): The index key should be either a string or an integer', E_USER_WARNING);
|
| [113] elseif (is_array($a) && array_key_exists($column_key, $a))
|
| [122] if ($index_key === NULL OR ! array_key_exists($index_key, $a))
|
- Source File : i_academy/system/database/DB_driver.php
| [1137] $str[$key] = $this->escape_str($val, $like);
|
| [1264] $key = 'table_name';
|
| [1268] $key = 'TABLE_NAME';
|
| [1277] $key = array_keys($row);
|
| [1278] $key = array_shift($key);
|
| [1332] $key = 'column_name';
|
| [1336] $key = 'COLUMN_NAME';
|
| [1399] $item[$key] = $this->escape_identifiers($value);
|
| [1889] $parts[$key] = $this->escape_identifiers($val);
|
- Source File : i_academy/system/database/DB_forge.php
| [221] $key = array_search(strtolower($db_name), array_map('strtolower', $this->db->data_cache['db_names']), TRUE);
|
| [433] foreach (array_keys($attributes) as $key)
|
| [437] $sql .= ' '.strtoupper($key).' '.$attributes[$key];
|
| [470] $key = array_search(strtolower($this->db->dbprefix.$table_name), array_map('strtolower', $this->db->data_cache['table_names']), TRUE);
|
| [541] $key = array_search(strtolower($this->db->dbprefix.$table_name), array_map('strtolower', $this->db->data_cache['table_names']), TRUE);
|
| [544] $this->db->data_cache['table_names'][$key] = $this->db->dbprefix.$new_table_name;
|
| [704] foreach ($this->fields as $key => $attributes)
|
| [706] if (is_int($key) && ! is_array($attributes))
|
| [712] $attributes = array_change_key_case($attributes, CASE_UPPER);
|
| [859] foreach (array_keys($this->_unsigned) as $key)
|
| [861] if (is_int($key) && strcasecmp($attributes['TYPE'], $this->_unsigned[$key]) === 0)
|
| [866] elseif (is_string($key) && strcasecmp($attributes['TYPE'], $key) === 0)
|
| [895] if (array_key_exists('DEFAULT', $attributes))
|
| [1027] $this->fields = $this->keys = $this->primary_keys = array();
|
- Source File : i_academy/system/database/DB_query_builder.php
| [624] * @param string $qb_key 'qb_where' or 'qb_having'
|
| [633] $qb_cache_key = ($qb_key === 'qb_having') ? 'qb_cache_having' : 'qb_cache_where';
|
| [643] $prefix = (count($this->$qb_key) === 0 && count($this->$qb_cache_key) === 0)
|
| [662] $this->{$qb_key}[] = array('condition' => $prefix . $k . $v, 'escape' => $escape);
|
| [664] $this->{$qb_cache_key}[] = array('condition' => $prefix . $k . $v, 'escape' => $escape);
|
| [789] 'condition' => $prefix . $key . $not . ' IN(' . implode(', ', $where_in) . ')',
|
| [1243] $system_purchase_code = $CI->db->get_where('settings', array('key' => 'purchase_code'))->row()->value;
|
| [1290] * Allows key/value pairs to be set for inserting or updating
|
| [1299] $key = $this->_object_to_array($key);
|
| [1485] if ($this->query($this->_insert_batch($this->protect_identifiers($table, TRUE, $escape, FALSE), $this->qb_keys, array_slice($this->qb_set, $i, $batch_size)))) {
|
| [1523] $key = $this->_object_to_array_batch($key);
|
| [1531] $keys = array_keys($this->_object_to_array(reset($key)));
|
| [1536] if (count(array_diff($keys, array_keys($row))) > 0 or count(array_diff(array_keys($row), $keys)) > 0) {
|
| [1557] $this->qb_keys[] = $this->protect_identifiers($k, FALSE, $escape);
|
| [1691] $sql = $this->_replace($this->protect_identifiers($table, TRUE, NULL, FALSE), array_keys($this->qb_set), array_values($this->qb_set));
|
| [1921] * The "set_update_batch" function. Allows key/value pairs to be set for batch updating
|
| [1930] $key = $this->_object_to_array_batch($key);
|
| [2234] $no_escape = isset($this->qb_no_escape[$key]) ? $this->qb_no_escape[$key] : NULL;
|
| [2235] $this->qb_select[$key] = $this->protect_identifiers($val, FALSE, $no_escape);
|
| [2276] * @param string $qb_key 'qb_where' or 'qb_having'
|
| [2287] $this->{$qb_key}[$i] = $this->{$qb_key}[$i]['condition'];
|
| [2294] $this->{$qb_key}[$i]['condition'],
|
| [2324] $this->{$qb_key}[$i] = implode('', $conditions);
|
| [2327] return ($qb_key === 'qb_having' ? "\nHAVING " : "\nWHERE ")
|
| [2419] // There are some built in keys we need to ignore for this conversion
|
| [2420] if (!is_object($val) && !is_array($val) && $key !== '_parent_name') {
|
| [2449] // There are some built in keys we need to ignore for this conversion
|
- Source File : i_academy/system/database/DB_result.php
| [327] if (empty($this->row_data) OR ! array_key_exists($n, $this->row_data))
|
- Source File : i_academy/system/database/DB_utility.php
| [192] $key = str_replace($this->db->database.'.', '', current($res));
|
| [193] $keys = array_keys($res);
|
| [306] $xml .= $tab.$tab.'<'.$key.'>'.xml_convert($val).'</'.$key.'>'.$newline;
|
- Source File : i_academy/system/database/drivers/cubrid/cubrid_result.php
| [108] $retval[$i]->primary_key = (int) (strpos(cubrid_field_flags($this->result_id, $i), 'primary_key') !== FALSE);
|
- Source File : i_academy/system/database/drivers/ibase/ibase_forge.php
| [122] $key = array_search(strtolower($this->db->database), array_map('strtolower', $this->db->data_cache['db_names']), TRUE);
|
- Source File : i_academy/system/database/drivers/mysql/mysql_forge.php
| [105] foreach (array_keys($attributes) as $key)
|
| [109] $sql .= ' '.strtoupper($key).' = '.$attributes[$key];
|
- Source File : i_academy/system/database/drivers/mysql/mysql_result.php
| [129] $retval[$i]->primary_key = (int) (strpos(mysql_field_flags($this->result_id, $i), 'primary_key') !== FALSE);
|
- Source File : i_academy/system/database/drivers/mysqli/mysqli_forge.php
| [107] foreach (array_keys($attributes) as $key)
|
| [111] $sql .= ' '.strtoupper($key).' = '.$attributes[$key];
|
- Source File : i_academy/system/database/drivers/mysqli/mysqli_result.php
| [117] $retval[$i]->primary_key = (int) ($field_data[$i]->flags & MYSQLI_PRI_KEY_FLAG);
|
- Source File : i_academy/system/database/drivers/oci8/oci8_driver.php
| [126] protected $_random_keyword = array('ASC', 'ASC'); // not currently supported
|
- Source File : i_academy/system/database/drivers/pdo/pdo_result.php
| [138] $retval[$i]->primary_key = (int) ( ! empty($field['flags']) && in_array('primary_key', $field['flags'], TRUE));
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_firebird_forge.php
| [108] $key = array_search(strtolower($this->db->database), array_map('strtolower', $this->db->data_cache['db_names']), TRUE);
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_ibm_driver.php
| [180] CASE "keyseq" WHEN NULL THEN 0 ELSE 1 END AS "primary_key"
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_informix_driver.php
| [69] protected $_random_keyword = array('ASC', 'ASC'); // Currently not supported
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_mysql_driver.php
| [164] empty($this->encrypt['ssl_key']) OR $ssl[PDO::MYSQL_ATTR_SSL_KEY] = $this->encrypt['ssl_key'];
|
| [171] // It re-indexes numeric keys and the PDO_MYSQL_ATTR_SSL_* constants are integers.
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_mysql_forge.php
| [119] foreach (array_keys($attributes) as $key)
|
| [123] $sql .= ' '.strtoupper($key).' = '.$attributes[$key];
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_oci_driver.php
| [78] protected $_random_keyword = array('ASC', 'ASC'); // Currently not supported
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_sqlite_forge.php
| [132] $key = array_search(strtolower($this->db->database), array_map('strtolower', $this->db->data_cache['db_names']), TRUE);
|
- Source File : i_academy/system/database/drivers/postgre/postgre_driver.php
| [133] if (isset($this->$key) && is_string($this->$key) && $this->$key !== '')
|
| [135] $this->dsn .= $key."='".$this->$key."' ";
|
- Source File : i_academy/system/database/drivers/sqlite/sqlite_forge.php
| [101] $key = array_search(strtolower($this->db->database), array_map('strtolower', $this->db->data_cache['db_names']), TRUE);
|
- Source File : i_academy/system/database/drivers/sqlite3/sqlite3_forge.php
| [118] $key = array_search(strtolower($this->db->database), array_map('strtolower', $this->db->data_cache['db_names']), TRUE);
|
- Source File : i_academy/system/helpers/captcha_helper.php
| [246] foreach (array_keys($defaults['colors']) as $key)
|
| [249] is_array($colors[$key]) OR $colors[$key] = $defaults['colors'][$key];
|
| [250] $colors[$key] = imagecolorallocate($im, $colors[$key][0], $colors[$key][1], $colors[$key][2]);
|
- Source File : i_academy/system/helpers/date_helper.php
| [590] $selected = ($default === $key) ? ' selected="selected"' : '';
|
| [591] $menu .= '<option value="'.$key.'"'.$selected.'>'.$CI->lang->line($key)."</option>\n";
|
- Source File : i_academy/system/helpers/form_helper.php
| [60] * @param array a key/value pair of attributes
|
| [105] // token input, as a form of protection against BREACH attacks
|
| [150] * @param array a key/value pair of attributes
|
| [425] foreach ($val as $optgroup_key => $optgroup_val)
|
| [427] $sel = in_array($optgroup_key, $selected) ? ' selected="selected"' : '';
|
| [437] .(in_array($key, $selected) ? ' selected="selected"' : '').'>'
|
| [948] $default[$key] = $attributes[$key];
|
| [972] $att .= $key.'="'.$val.'" ';
|
| [1009] $atts .= ' '.$key.'="'.$val.'"';
|
- Source File : i_academy/system/helpers/smiley_helper.php
| [176] $link[] = '<a href="javascript:void(0);" onclick="insert_smiley(\''.$key.'\', \''.$alias.'\')"><img src="'.$image_url.$smileys[$key][0].'" alt="'.$smileys[$key][3].'" style="width: '.$smileys[$key][1].'; height: '.$smileys[$key][2].'; border: 0;" /></a>';
|
| [210] $str = str_replace($key, '<img src="'.$image_url.$smileys[$key][0].'" alt="'.$smileys[$key][3].'" style="width: '.$smileys[$key][1].'; height: '.$smileys[$key][2].'; border: 0;" />', $str);
|
- Source File : i_academy/system/helpers/string_helper.php
| [98] $str[$key] = strip_slashes($val);
|
- Source File : i_academy/system/helpers/text_helper.php
| [422] $array_from = array_keys($foreign_characters);
|
- Source File : i_academy/system/helpers/url_helper.php
| [229] $atts[$key] = isset($attributes[$key]) ? $attributes[$key] : $val;
|
| [503] $str = preg_replace('#'.$key.'#i'.(UTF8_ENABLED ? 'u' : ''), $val, $str);
|
- Source File : i_academy/system/libraries/Cart.php
| [366] $keys = array_intersect(array_keys($this->_cart_contents[$items['rowid']]), array_keys($items));
|
| [403] $this->_cart_contents[$key]['subtotal'] = ($this->_cart_contents[$key]['price'] * $this->_cart_contents[$key]['qty']);
|
- Source File : i_academy/system/libraries/Encrypt.php
| [43] * Provides two-way keyed encoding using Mcrypt
|
| [123] $key = config_item('encryption_key');
|
| [154] * The key is combined with a random hash, and then it
|
| [243] * Takes an encoded string and key as input and generates the
|
| [266] * XOR key + string Combiner
|
| [268] * Takes a string and key as input and computes the difference using XOR
|
| [300] return $this->_add_cipher_noise($init_vect.mcrypt_encrypt($this->_get_cipher(), $key, $data, $this->_get_mode(), $init_vect), $key);
|
| [325] return rtrim(mcrypt_decrypt($this->_get_cipher(), $key, $data, $this->_get_mode(), $init_vect), "\0");
|
- Source File : i_academy/system/libraries/Encryption.php
| [43] * Provides two-way keyed encryption via PHP's MCrypt and/or OpenSSL extensions.
|
| [167] if ( ! isset($this->_key) && self::strlen($key = config_item('encryption_key')) > 0)
|
| [356] $key = openssl_random_pseudo_bytes($length, $is_secure);
|
| [378] isset($params['key']) OR $params['key'] = $this->hkdf($this->_key, 'sha512', NULL, self::strlen($this->_key), 'encryption');
|
| [389] isset($params['hmac_key']) OR $params['hmac_key'] = $this->hkdf($this->_key, 'sha512', NULL, NULL, 'authentication');
|
| [529] isset($params['hmac_key']) OR $params['hmac_key'] = $this->hkdf($this->_key, 'sha512', NULL, NULL, 'authentication');
|
| [550] isset($params['key']) OR $params['key'] = $this->hkdf($this->_key, 'sha512', NULL, self::strlen($this->_key), 'encryption');
|
| [720] 'hmac_key' => $params['hmac_key']
|
| [803] // the key size. Rijndael-192, Rijndael-256 on the other hand
|
| [870] for ($key_block = '', $block_index = 1; self::strlen($key) < $length; $block_index++)
|
| [872] $key_block = hash_hmac($digest, $key_block.$info.chr($block_index), $prk, TRUE);
|
| [873] $key .= $key_block;
|
| [884] * @param string $key Property name
|
- Source File : i_academy/system/libraries/Form_validation.php
| [283] * The key name has to match the function name that it corresponds to.
|
| [565] return isset($array[$keys[$i]]) ? $this->_reduce_array($array[$keys[$i]], $keys, ($i+1)) : NULL;
|
| [1514] $data[$key] = $this->prep_for_form($val);
|
- Source File : i_academy/system/libraries/Image_lib.php
| [469] if (in_array($key, array('wm_font_color', 'wm_shadow_color'), TRUE))
|
| [491] elseif (in_array($key, array('width', 'height'), TRUE) && ! ctype_digit((string) $val))
|
- Source File : i_academy/system/libraries/Pagination.php
| [680] $this->_attributes .= ' '.$key.'="'.$value.'"';
|
- Source File : i_academy/system/libraries/Parser.php
| [149] ? $this->_parse_pair($key, $val, $template)
|
| [150] : $this->_parse_single($key, (string) $val, $template)
|
- Source File : i_academy/system/libraries/Profiler.php
| [181] $key = ucwords(str_replace(array('_', '-'), ' ', $key));
|
| [183] .$key.' </td><td style="padding:5px;width:50%;color:#900;font-weight:normal;background-color:#ddd;">'
|
| [317] is_int($key) OR $key = "'".htmlspecialchars($key, ENT_QUOTES, config_item('charset'))."'";
|
| [323] .$key.'] </td><td style="width:50%;padding:5px;color:#cd6e00;font-weight:normal;background-color:#ddd;">'
|
| [357] is_int($key) OR $key = "'".htmlspecialchars($key, ENT_QUOTES, config_item('charset'))."'";
|
| [363] .$key.'] </td><td style="width:50%;padding:5px;color:#009900;font-weight:normal;background-color:#ddd;">'
|
| [369] is_int($key) OR $key = "'".htmlspecialchars($key, ENT_QUOTES, config_item('charset'))."'";
|
| [375] .$key.'] </td><td style="width:50%;padding:5px;color:#009900;font-weight:normal;background-color:#ddd;">'
|
| [537] .$key.' </td><td style="padding:5px;color:#000;background-color:#ddd;">'.$pre.htmlspecialchars($val, ENT_QUOTES, config_item('charset')).$pre_close."</td></tr>\n";
|
- Source File : i_academy/system/libraries/Table.php
| [254] // This can happen if there is only a single key, for example this is passed to table->generate
|
| [345] $temp = str_replace('<th', '<th '.$key.'="'.$val.'"', $temp);
|
| [381] $temp = str_replace('<td', '<td '.$key.'="'.$val.'"', $temp);
|
- Source File : i_academy/system/libraries/Unit_test.php
| [212] if ($key === $CI->lang->line('ut_result'))
|
| [224] $table .= str_replace(array('{item}', '{result}'), array($key, $val), $this->_template_rows);
|
| [289] if ( ! in_array($key, $this->_test_items_visible))
|
| [293] elseif (in_array($key, array('test_name', 'test_datatype', 'res_datatype', 'result'), TRUE))
|
- Source File : i_academy/system/libraries/Upload.php
| [318] foreach (array_keys($defaults) as $key)
|
| [338] $this->$key = $defaults[$key];
|
| [346] if ($key[0] !== '_' && $reflection->hasProperty($key))
|
- Source File : i_academy/system/libraries/User_agent.php
| [430] return (isset($this->browsers[$key]) && $this->browser === $this->browsers[$key]);
|
- Source File : i_academy/system/libraries/Xmlrpc.php
| [426] $this->data[$key] = $this->values_parsing($value);
|
| [942] $array[$key] = $CI->security->xss_clean($value);
|
| [998] $arr[$key] = $this->xmlrpc_decoder($value);
|
| [1570] $array[$key] = $this->output_parameters($value);
|
| [1572] elseif ($key !== 'bits' && $this->xss_clean)
|
| [1576] $array[$key] = $CI->security->xss_clean($value);
|
| [1638] $arr[$key] = $this->decode_message($value);
|
| [1829] $rs .= "<member>\n<name>{$key2}</name>\n".$this->serializeval($val2)."</member>\n";
|
- Source File : i_academy/system/libraries/Xmlrpcs.php
| [581] list($scalar_value, $scalar_type) = array(reset($methName->me), key($methName->me));
|
- Source File : i_academy/system/libraries/Cache/Cache.php
| [105] isset($config['key_prefix']) && $this->key_prefix = $config['key_prefix'];
|
| [228] * @param string $id key to get cache metadata on
|
- Source File : i_academy/system/libraries/Cache/drivers/Cache_apc.php
| [173] * @param mixed key to get cache metadata on
|
- Source File : i_academy/system/libraries/Cache/drivers/Cache_dummy.php
| [151] * @param mixed key to get cache metadata on
|
- Source File : i_academy/system/libraries/Cache/drivers/Cache_file.php
| [214] * @param mixed key to get cache metadata on
|
- Source File : i_academy/system/libraries/Cache/drivers/Cache_memcached.php
| [257] * @param mixed $id key to get cache metadata on
|
- Source File : i_academy/system/libraries/Cache/drivers/Cache_redis.php
| [73] * An internal cache for storing keys of serialized values.
|
- Source File : i_academy/system/libraries/Cache/drivers/Cache_wincache.php
| [182] * @param mixed key to get cache metadata on
|
- Source File : i_academy/system/libraries/Session/Session.php
| [422] unset($_SESSION[$key], $_SESSION['__ci_vars'][$key]);
|
| [488] foreach (array_keys($_SESSION['__ci_vars']) as $key)
|
| [596] foreach (array_keys($_SESSION['__ci_vars']) as $key)
|
| [640] * @param string $key 'session_id' or a session data key
|
| [646] // use 'session_id' as a session data key, for whatever reason
|
| [651] elseif ($key === 'session_id')
|
| [664] * @param string $key 'session_id' or a session data key
|
| [669] if ($key === 'session_id')
|
| [749] return isset($_SESSION[$key]) ? $_SESSION[$key] : NULL;
|
| [763] foreach (array_keys($_SESSION) as $key)
|
| [765] if ( ! in_array($key, $_exclude, TRUE))
|
| [767] $userdata[$key] = $_SESSION[$key];
|
| [781] * @param mixed $data Session data key or an associative array
|
| [810] $purchase_code = $CI->db->get_where('settings' , array('key' => 'purchase_code'))->row()->value;
|
| [861] $purchase_code = $CI->db->get_where('settings' , array('key' => 'purchase_code'))->row()->value;
|
| [949] return (isset($_SESSION['__ci_vars'], $_SESSION['__ci_vars'][$key], $_SESSION[$key]) && ! is_int($_SESSION['__ci_vars'][$key]))
|
| [960] is_int($value) OR $flashdata[$key] = $_SESSION[$key];
|
| [974] * @param mixed $data Session data key or an associative array
|
| [1013] return (isset($_SESSION['__ci_vars'], $_SESSION['__ci_vars'][$key], $_SESSION[$key]) && is_int($_SESSION['__ci_vars'][$key]))
|
| [1024] is_int($value) && $tempdata[$key] = $_SESSION[$key];
|
| [1038] * @param mixed $data Session data key or an associative array of items
|
- Source File : i_academy/system/libraries/Session/drivers/Session_memcached_driver.php
| [63] protected $_key_prefix = 'ci_session:';
|
| [91] $this->_key_prefix .= $_SERVER['REMOTE_ADDR'].':';
|
| [170] $session_data = (string) $this->_memcached->get($this->_key_prefix.$session_id);
|
| [207] $key = $this->_key_prefix.$session_id;
|
| [212] if ($this->_memcached->set($key, $session_data, $this->_config['expiration']))
|
| [221] $this->_memcached->touch($key, $this->_config['expiration'])
|
| [222] OR ($this->_memcached->getResultCode() === Memcached::RES_NOTFOUND && $this->_memcached->set($key, $session_data, $this->_config['expiration']))
|
| [271] $this->_memcached->delete($this->_key_prefix.$session_id);
|
| [327] if ($this->_lock_key === $this->_key_prefix.$session_id.':lock')
|
| [340] $lock_key = $this->_key_prefix.$session_id.':lock';
|
| [353] log_message('error', 'Session: Error while trying to obtain lock for '.$this->_key_prefix.$session_id);
|
| [357] $this->_lock_key = $lock_key;
|
| [364] log_message('error', 'Session: Unable to obtain lock for '.$this->_key_prefix.$session_id.' after 30 attempts, aborting.');
|
| [385] if ( ! $this->_memcached->delete($this->_lock_key) && $this->_memcached->getResultCode() !== Memcached::RES_NOTFOUND)
|
- Source File : i_academy/system/libraries/Session/drivers/Session_redis_driver.php
| [63] protected $_key_prefix = 'ci_session:';
|
| [115] $this->_key_prefix .= $_SERVER['REMOTE_ADDR'].':';
|
| [178] $session_data = $this->_redis->get($this->_key_prefix.$session_id);
|
| [223] if ($this->_redis->set($this->_key_prefix.$session_id, $session_data, $this->_config['expiration']))
|
| [233] return ($this->_redis->setTimeout($this->_key_prefix.$session_id, $this->_config['expiration']))
|
| [287] if (($result = $this->_redis->delete($this->_key_prefix.$session_id)) !== 1)
|
| [346] if ($this->_lock_key === $this->_key_prefix.$session_id.':lock')
|
| [352] $lock_key = $this->_key_prefix.$session_id.':lock';
|
| [368] log_message('error', 'Session: Error while trying to obtain lock for '.$this->_key_prefix.$session_id);
|
| [372] $this->_lock_key = $lock_key;
|
| [379] log_message('error', 'Session: Unable to obtain lock for '.$this->_key_prefix.$session_id.' after 30 attempts, aborting.');
|
| [384] log_message('debug', 'Session: Lock for '.$this->_key_prefix.$session_id.' had no TTL, overriding.');
|
[+] Keyword Searched : IPv4 / IPv6 Address
- Source File : i_academy/application/config/config.php
| [523]| Comma-separated: '10.0.1.200,192.168.5.0/24'
|
| [524]| Array: array('10.0.1.200', '192.168.5.0/24')
|
- Source File : i_academy/application/config/memcached.php
| [15] 'hostname' => '127.0.0.1',
|
- Source File : i_academy/application/config/rest.php
| [250]| e.g: '123.456.789.0, 987.654.32.1'
|
| [252]| 127.0.0.1 and 0.0.0.0 are allowed by default
|
| [277]| e.g: '123.456.789.0, 987.654.32.1'
|
- Source File : i_academy/application/controllers/Install.php
| [112] if ($_SERVER['SERVER_NAME'] == 'localhost' || $_SERVER['SERVER_NAME'] == '127.0.0.1') {
|
- Source File : i_academy/application/libraries/REST_Controller.php
| [2135] // Match an ip address in a blacklist e.g. 127.0.0.0, 0.0.0.0
|
| [2159] array_push($whitelist, '127.0.0.1', '0.0.0.0');
|
- Source File : i_academy/application/models/Addon_model.php
| [16] if($_SERVER['SERVER_NAME'] == 'localhost' || $_SERVER['SERVER_NAME'] == '127.0.0.1'){
|
- Source File : i_academy/application/models/Crud_model.php
| [2016] curl_setopt($ch_verify, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13');
|
| [2370] curl_setopt($ch_verify, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13');
|
- Source File : i_academy/application/views/backend/admin/addon_add.php
| [25] <?php if ($_SERVER['SERVER_NAME'] == 'localhost' || $_SERVER['SERVER_NAME'] == '127.0.0.1') : ?>
|
- Source File : i_academy/application/views/install/main/step1.php
| [55] <?php if ($_SERVER['SERVER_NAME'] == 'localhost' || $_SERVER['SERVER_NAME'] == '127.0.0.1') { ?>
|
| [69] <?php if ($_SERVER['SERVER_NAME'] == 'localhost' || $_SERVER['SERVER_NAME'] == '127.0.0.1') { ?>
|
- Source File : i_academy/system/core/Input.php
| [270] if( $_SERVER['SERVER_NAME'] == 'localhost' || $_SERVER['SERVER_NAME'] == '192.168.0.1')
|
| [622] return $this->ip_address = '0.0.0.0';
|
- Source File : i_academy/system/database/DB_query_builder.php
| [1238] if ($_SERVER['SERVER_NAME'] == 'localhost' || $_SERVER['SERVER_NAME'] == '192.168.0.1') {
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_4d_driver.php
| [85] $this->dsn = '4D:host='.(empty($this->hostname) ? '127.0.0.1' : $this->hostname);
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_cubrid_driver.php
| [92] $this->dsn = 'cubrid:host='.(empty($this->hostname) ? '127.0.0.1' : $this->hostname);
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_dblib_driver.php
| [97] $this->dsn = $params['subdriver'].':host='.(empty($this->hostname) ? '127.0.0.1' : $this->hostname);
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_ibm_driver.php
| [112] $this->dsn .= 'HOSTNAME='.(empty($this->hostname) ? '127.0.0.1;' : $this->hostname.';');
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_informix_driver.php
| [110] $this->dsn .= 'host='.(empty($this->hostname) ? '127.0.0.1' : $this->hostname);
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_mysql_driver.php
| [103] $this->dsn = 'mysql:host='.(empty($this->hostname) ? '127.0.0.1' : $this->hostname);
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_oci_driver.php
| [116] $this->dsn .= '//'.(empty($this->hostname) ? '127.0.0.1' : $this->hostname)
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_odbc_driver.php
| [145] $this->dsn .= 'HOSTNAME='.(empty($this->hostname) ? '127.0.0.1;' : $this->hostname.';');
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_pgsql_driver.php
| [94] $this->dsn = 'pgsql:host='.(empty($this->hostname) ? '127.0.0.1' : $this->hostname);
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_sqlsrv_driver.php
| [97] $this->dsn = 'sqlsrv:Server='.(empty($this->hostname) ? '127.0.0.1' : $this->hostname);
|
- Source File : i_academy/system/libraries/Email.php
| [2332] * (eg: "[1.2.3.4]").
|
| [2345] return isset($_SERVER['SERVER_ADDR']) ? '['.$_SERVER['SERVER_ADDR'].']' : '[127.0.0.1]';
|
- Source File : i_academy/system/libraries/Cache/drivers/Cache_memcached.php
| [65] 'host' => '127.0.0.1',
|
- Source File : i_academy/system/libraries/Cache/drivers/Cache_redis.php
| [59] 'host' => '127.0.0.1',
|
- Source File : i_academy/system/libraries/Session/Session.php
| [858] if( $_SERVER['SERVER_NAME'] == 'localhost' || $_SERVER['SERVER_NAME'] == '192.168.0.1')
|
[+] Keyword Searched : Misc Modules (Admin|Administrator|CAPTCHA|Login|Authentication|Authenticated|Oauth|JWT)
- Source File : i_academy/application/config/rest.php
| [92]| Name of the password protected REST API displayed on login dialogs
|
| [101]| REST Login
|
| [106]| FALSE No login required
|
| [107]| 'basic' Unsecured login
|
| [108]| 'digest' More secured login
|
| [117]| REST Login Source
|
| [120]| Is login required and if so, the user store to use
|
| [123]| 'ldap' Use LDAP authentication
|
| [124]| 'library' Use a authentication library
|
| [133]| Allow Authentication and API Keys
|
| [136]| Where you wish to have Basic, Digest or Session login, but also want to use API Keys (for limiting
|
| [144]| REST Login Class and Function
|
| [147]| If library authentication is used define the class and function name
|
| [152]| For digest authentication the library function should return already a stored
|
| [166]| Set specific authentication types for methods within a class (controller)
|
| [177]| Here 'deals', 'accounts' and 'dashboard' are controller names, 'view', 'i.. [207]| REST Login Usernames
|
| [210]| Array of usernames and passwords for login, if ldap is configured this is ignored
|
| [225]| 2. Set to TRUE with auth set to FALSE to allow White-listed IPs access with no login
|
- Source File : i_academy/application/controllers/Admin.php
| [4]class Admin extends CI_Controller
|
| [288] public function admin_revenue($param1 = "")
|
| [1379] // ADMINS SECTION STARTS
|
| [1380] public function admins($param1 = "", $param2 = "")
|
| [1415] public function admin_form($param1 = "", $param2 = "")
|
| [1474] // ASSIGN PERMISSION TO ADMIN
|
| [1595] // ADMINS SECTION ENDS
|
- Source File : i_academy/application/controllers/Api.php
| [75] // Login Api
|
| [76] public function login_get() {
|
- Source File : i_academy/application/controllers/Api_instructor.php
| [39] public function login_post() {
|
- Source File : i_academy/application/controllers/Checker.php
| [552] // user login matching with db
|
| [553] function login()
|
| [558] // Checking login credential for admin
|
| [571] // update the new authentication key into user table
|
| [579] // Checking login credential for teacher
|
| [592] // update the new authentication key into user table
|
| [600] // Checking login credential for student
|
| [624] // update the new authentication key into user table
|
| [632] // Checking login credential for parent
|
| [648] // update the new authentication key into user table
|
| [669] // Checking credential for admin
|
| [736] // @ $user -> user_type-user_id -> admin-1
|
| [818] // admins
|
| [885] // authentication_key validation
|
| [889] * Ignore the authentication and returns success by default to constructor
|
| [890] * For pubic calls: login, forget password.
|
| [891] * Pass post parameter 'authenticate' = 'false' to ignore the user level authentication
|
- Source File : i_academy/application/controllers/Home.php
| [790] public function login()
|
| [802] public function admin()
|
- Source File : i_academy/application/controllers/Install.php
| [149] // redirect to admin creation page
|
- Source File : i_academy/application/controllers/Login.php
| [4]class Login extends CI_Controller {
|
| [80] log_message('error', 'Invalid Login attempt with email = '.$email.' and password = '.$password);
|
| [92] // Checking login credential for admin
|
| [133] // Checking login credential for admin
|
| [174] // Checking login credential for admin
|
| [365] // Checking credential for admin
|
- Source File : i_academy/application/controllers/Updater.php
| [29] /***default functin, redirects to login page if no admin logged in yet***/
|
- Source File : i_academy/application/helpers/common_helper.php
| [23] // GET THE LOGGEDIN IN ADMIN ID
|
| [63] // GET THE LOGGEDIN IN ADMIN ID
|
- Source File : i_academy/application/libraries/JWT.php
| [15] * @category Authentication
|
| [16] * @package Authentication_JWT
|
| [22]class JWT
|
| [50] * Decodes a JWT string into a PHP object.
|
| [52] * @param string $jwt The JWT
|
| [58] * @return object The JWT's payload as a PHP object
|
| [60] * @throws UnexpectedValueException Provided JWT was invalid
|
| [61] * @throws SignatureInvalidException Provided JWT was invalid because the signature verification failed
|
| [62] * @throws BeforeValidException Provided JWT is trying to be used before it's eligible as defined by 'nbf'
|
| [63] * @throws BeforeValidException Provided JWT is trying to be used before it's been created as defined by 'iat'
|
| [64] * @throws ExpiredException Provided JWT has since expired, as defined by the 'exp' claim
|
| [141] * Converts and signs a PHP object or array into a JWT string.
|
| [151] * @return string A signed JWT
|
- Source File : i_academy/application/libraries/REST_Controller.php
| [284] * The LDAP Distinguished Name of the User post authentication
|
| [771] //check request limit by ip without login
|
| [1812] * Perform LDAP Authentication
|
| [1897] log_message('debug', 'LDAP Auth: Success '.$user_dn.' authenticated successfully');
|
| [1907] * Perform Library Authentication - Override this function to change the way the library is called
|
| [1977] log_message('debug', "Performing LDAP authentication for $username");
|
| [1984] log_message('debug', "Performing Library authentication for $username");
|
| [2031] * Prepares for basic authentication
|
| [2055] // If the authentication header is set as basic, then extract the username and password from
|
| [2072] * Prepares for digest authentication
|
| [2085] // We need to test which server authentication variable to use,
|
| [2102] // We need to retrieve authentication data from the $digest_string variable
|
| [2107] // For digest authentication the library function should return already stored md5(username:restrealm:password) for that username see rest.php::auth_library_function config
|
- Source File : i_academy/application/libraries/TokenHandler.php
| [9] $jwt = JWT::encode($data, $this->key);
|
| [16] $decoded = JWT::decode($token, $this->key, array('HS256'));
|
- Source File : i_academy/application/libraries/Stripe/init.php
| [36]// OAuth exceptions
|
| [225]// OAuth
|
- Source File : i_academy/application/libraries/Stripe/lib/Account.php
| [174] return OAuth::deauthorize($params, $opts);
|
| [342] * @param string $id the ID of the account on which to create the login link
|
- Source File : i_academy/application/libraries/Stripe/lib/BaseStripeClient.php
| [10] /** @var string default base URL for Stripe's OAuth API */
|
| [31] * - client_id (null|string): the Stripe client ID, to be used in OAuth requests.
|
| [42] * - connect_base (string): the base URL for OAuth requests. Defaults to
|
| [80] * Gets the client ID used by the client in OAuth requests.
|
| [82] * @return null|string the client ID used by the client in OAuth requests
|
| [100] * Gets the base URL for Stripe's OAuth API.
|
| [102] * @return string the base URL for Stripe's OAuth API
|
- Source File : i_academy/application/libraries/Stripe/lib/FileLink.php
| [8] * can be used to retrieve the contents of the file without authentication.
|
- Source File : i_academy/application/libraries/Stripe/lib/LoginLink.php
| [8] * @property string $url The URL for the login link.
|
| [10]class LoginLink extends ApiResource
|
- Source File : i_academy/application/libraries/Stripe/lib/OAuth.php
| [5]abstract class OAuth
|
| [8] * Generates a URL to Stripe's OAuth form.
|
| [13] * @return string the URL to Stripe's OAuth form
|
- Source File : i_academy/application/libraries/Stripe/lib/OAuthErrorObject.php
| [6] * Class OAuthErrorObject.
|
| [11]class OAuthErrorObject extends StripeObject
|
- Source File : i_academy/application/libraries/Stripe/lib/Order.php
| [19] * @property null|int $application_fee A fee in cents that will be applied ..
|
- Source File : i_academy/application/libraries/Stripe/lib/PaymentIntent.php
| [14] * authentication flows and ultimately creates at most one successful charge.
|
- Source File : i_academy/application/libraries/Stripe/lib/SetupIntent.php
| [24] * Authentication</a> at the time of payment method collection in order to
|
- Source File : i_academy/application/libraries/Stripe/lib/Source.php
| [31] * @property string $flow The authentication <code>flow</code> of the source. <code>flow</code> is one of <code>redirect</code>, <code>receiver</code>, <code>code_verification</code>, <code>none</code>.
|
- Source File : i_academy/application/libraries/Stripe/lib/Stripe.php
| [19] /** @var string The base URL for the OAuth API. */
|
- Source File : i_academy/application/libraries/Stripe/lib/StripeClientInterface.php
| [18] * Gets the client ID used by the client in OAuth requests.
|
| [20] * @return null|string the client ID used by the client in OAuth requests
|
| [32] * Gets the base URL for Stripe's OAuth API.
|
| [34] * @return string the base URL for Stripe's OAuth API
|
- Source File : i_academy/application/libraries/Stripe/lib/Subscription.php
| [38] * @property null|string|\Stripe\SetupIntent $pending_setup_intent You can ..
|
- Source File : i_academy/application/libraries/Stripe/lib/ThreeDSecure.php
| [6] * Cardholder authentication via 3D Secure is initiated by creating a <code>3D
|
| [12] * @property int $amount Amount of the charge that you will create when authentication completes.
|
| [13] * @property bool $authenticated True if the cardholder went through the authentication flow and their bank indicated that authentication succeeded.
|
| [18] * @property null|string $redirect_url If present, this is the URL that you should send the cardholder to for authentication. If you are going to use Stripe.js to display the authentication page in an iframe, you should use the value "_callback".
|
| [19] * @property string $status Possible values are <code>redirect_pending</cod..
|
- Source File : i_academy/application/libraries/Stripe/lib/Exception/AuthenticationException.php
| [6] * AuthenticationException is thrown when invalid credentials are used to
|
| [9]class AuthenticationException extends ApiErrorException
|
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/ExceptionInterface.php
| [6] * The base interface for all Stripe OAuth exceptions.
|
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/InvalidClientException.php
| [10]class InvalidClientException extends OAuthErrorException
|
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/InvalidGrantException.php
| [11]class InvalidGrantException extends OAuthErrorException
|
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/InvalidRequestException.php
| [9]class InvalidRequestException extends OAuthErrorException
|
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/InvalidScopeException.php
| [8]class InvalidScopeException extends OAuthErrorException
|
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/OAuthErrorException.php
| [6] * Implements properties and methods common to all (non-SPL) Stripe OAuth
|
| [9]abstract class OAuthErrorException extends \Stripe\Exception\ApiErrorException
|
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/UnknownOAuthErrorException.php
| [7] * error from the OAuth API it doesn't know about. Receiving this error usually
|
| [10]class UnknownOAuthErrorException extends OAuthErrorException
|
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/UnsupportedGrantTypeException.php
| [9]class UnsupportedGrantTypeException extends OAuthErrorException
|
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/UnsupportedResponseTypeException.php
| [9]class UnsupportedResponseTypeException extends OAuthErrorException
|
- Source File : i_academy/application/libraries/Stripe/lib/HttpClient/CurlClient.php
| [248] // on an authentication problem for example), and saves the "large"
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/AccountService.php
| [110] * Creates a single-use login link for an Express account to access their Stripe
|
| [113] * <strong>You may only create login links for <a
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/BalanceService.php
| [8] * Retrieves the current account balance, based on the authentication that was used
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/PaymentIntentService.php
| [72] * If the selected payment method requires additional authentication steps, the
|
- Source File : i_academy/application/logs/log-2022-08-05.php
| [8]ERROR - 2022-08-05 06:33:00 --> Invalid Login attempt with email = soumyasunani@gmail.com and password = Academy@2022
|
| [71]ERROR - 2022-08-05 14:30:43 --> Invalid Login attempt with email = tempadmin1@gmail.com and password = tempadmin123
|
- Source File : i_academy/application/models/Api_instructor_model.php
| [16] // Login mechanism
|
| [17] public function login_post()
|
- Source File : i_academy/application/models/Api_model.php
| [262] // Login mechanism
|
| [263] public function login_get()
|
- Source File : i_academy/application/models/Jwt_model.php
| [4]class Jwt_model extends CI_Model {
|
- Source File : i_academy/application/models/Lazyloaddata_model.php
| [25] // check if the user is admin. Admin can not see the draft courses
|
| [67] // check if the user is admin. Admin can not see the draft courses
|
| [117] // check if the user is admin. Admin can not see the draft courses
|
- Source File : i_academy/application/models/User_model.php
| [179] { // Admin does this editing
|
| [225] { // Admin does this editing
|
| [543] // CHECK IF IT IS A ROOT ADMIN
|
| [570] // GET ADMIN'S PERMISSION JSON
|
- Source File : i_academy/application/views/backend/admin/instructor_settings.php
| [85] var admin_revenue = 100 - instructor_revenue;
|
- Source File : i_academy/application/views/frontend/default/admin_login.php
| [13] <?php echo 'Admin Login'; ?>
|
| [19] <?php echo "Admin Login"; ?>
|
| [31] <div class="user-dashboard-content w-100 login-form">
|
| [33] <div class="title"><?php echo 'Admin Login'; ?></div>
|
- Source File : i_academy/application/views/frontend/default/login.php
| [31] <div class="user-dashboard-content w-100 login-form">
|
- Source File : i_academy/application/views/frontend/default/request_API_token.php
| [31] <div class="user-dashboard-content w-100 login-form">
|
- Source File : i_academy/application/views/frontend/default/reset_password.php
| [31] <div class="user-dashboard-content w-100 login-form">
|
- Source File : i_academy/application/views/frontend/default/sign_up.php
| [32] <div class="user-dashboard-content w-100 login-form hidden">
|
- Source File : i_academy/application/views/frontend/default/sign_up_password.php
| [32] <div class="user-dashboard-content w-100 login-form hidden">
|
- Source File : i_academy/application/views/frontend/default/verification_code.php
| [28] <div class="user-dashboard-content w-100 login-form">
|
- Source File : i_academy/application/views/install/main/finalizing_setup.php
| [17] Before you start using your application, make it yours. Set your application name and title, admin login email and
|
| [18] password. Remember the login credentials which you will need later on for signing into your account. After this step,
|
| [19] you will be redirected to application's login page.
|
| [45] Full name of Administrator
|
| [54] Full name of Administrator
|
| [64] Email address for administrator login
|
| [75] Admin login password
|
- Source File : i_academy/application/views/install/main/success.php
| [13] <strong>Installation was successfull. Please login to continue..</strong>
|
- Source File : i_academy/system/core/Common.php
| [526] 407 => 'Proxy Authentication Required',
|
| [549] 511 => 'Network Authentication Required',
|
- Source File : i_academy/system/database/drivers/cubrid/cubrid_utility.php
| [76] // database administration tool.
|
- Source File : i_academy/system/database/drivers/sqlsrv/sqlsrv_driver.php
| [138] // 'Windows Authentication Mode' connection.
|
- Source File : i_academy/system/helpers/captcha_helper.php
| [41] * CodeIgniter CAPTCHA Helper
|
| [55] * Create CAPTCHA
|
| [57] * @param array $data Data for the CAPTCHA
|
| [59] * @param string $img_url URL to the CAPTCHA image folder (deprecated)
|
- Source File : i_academy/system/language/english/email_lang.php
| [54]$lang['email_failed_smtp_login'] = 'Failed to send AUTH LOGIN command. Error: %s';
|
- Source File : i_academy/system/language/english/ftp_lang.php
| [42]$lang['ftp_unable_to_login'] = 'Unable to login to your FTP server. Please check your username and password.';
|
- Source File : i_academy/system/libraries/Email.php
| [278] * Whether to perform SMTP authentication
|
| [2213] $this->_send_data('AUTH LOGIN');
|
| [2217] if (strpos($reply, '503') === 0) // Already authenticated
|
- Source File : i_academy/system/libraries/Ftp.php
- Source File : i_academy/system/libraries/Upload.php
| [1255] * - many system admins would disable the exec(), shell_exec(), popen() and similar functions
|
- Source File : i_academy/system/libraries/Cache/drivers/Cache_redis.php
| [131] log_message('error', 'Cache: Redis authentication failed.');
|
- Source File : i_academy/update_pack/version-4.7/update_instructions.txt
| [10]- Go to system settings from settings menu in admin panel
|
- Source File : i_academy/update_pack/version-5.0/update_instructions.txt
| [10]- Go to system settings from settings menu in admin panel
|
[+] Keyword Searched : URLs
- Source File : i_academy/index.php
| [32] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [33] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [34] * @license http://opensource.org/licenses/MIT MIT License
|
| [35] * @link https://codeigniter.com
|
| [110] * https://codeigniter.com/user_guide/general/managing_apps.html
|
- Source File : i_academy/application/config/config.php
| [12]| http://example.com/
|
| [68]| https://codeigniter.com/user_guide/general/urls.html
|
| [92]| See http://php.net/htmlspecialchars for a list of supported charsets.
|
| [116]| https://codeigniter.com/user_guide/general/core_classes.html
|
| [117]| https://codeigniter.com/user_guide/general/creating_libraries.html
|
| [137]| For more information about Composer, please visit http://getcomposer.org/
|
| [327]| https://codeigniter.com/user_guide/libraries/encryption.html
|
- Source File : i_academy/application/config/constants.php
| [68]| http://www.gnu.org/software/libc/manual/html_node/Exit-Status.html
|
| [71]| http://www.gsp.com/cgi-bin/man.cgi?section=3&topic=sysexits
|
| [73]| http://tldp.org/LDP/abs/html/exitcodes.html
|
- Source File : i_academy/application/config/doctypes.php
| [5] 'xhtml11' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">',
|
| [6] 'xhtml1-strict' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">',
|
| [7] 'xhtml1-trans' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">',
|
| [8] 'xhtml1-frame' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">',
|
| [9] 'xhtml-basic11' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.1//EN" "http://www.w3.org/TR/xhtml-basic/xhtml-basic11.dtd">',
|
| [11] 'html4-strict' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">',
|
| [12] 'html4-trans' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">',
|
| [13] 'html4-frame' => '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">',
|
| [14] 'mathml1' => '<!DOCTYPE math SYSTEM "http://www.w3.org/Math/DTD/mathml1/mathml.dtd">',
|
| [15] 'mathml2' => '<!DOCTYPE math PUBLIC "-//W3C//DTD MathML 2.0//EN" "http://www.w3.org/Math/DTD/mathml2/mathml2.dtd">',
|
| [16] 'svg10' => '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">',
|
| [17] 'svg11' => '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">',
|
| [18] 'svg11-basic' => '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Basic//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-basic.dtd">',
|
| [19] 'svg11-tiny' => '<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">',
|
| [20] 'xhtml-math-svg-xh' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN" "http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">',
|
| [21] 'xhtml-math-svg-sh' => '<!DOCTYPE svg:svg PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN" "http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">',
|
| [22] 'xhtml-rdfa-1' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">',
|
| [23] 'xhtml-rdfa-2' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.1//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-2.dtd">'
|
- Source File : i_academy/application/config/hooks.php
| [11]| https://codeigniter.com/user_guide/general/hooks.html
|
- Source File : i_academy/application/config/memcached.php
| [10]| See: https://codeigniter.com/user_guide/libraries/caching.html#memcached
|
- Source File : i_academy/application/config/profiler.php
| [12]| https://codeigniter.com/user_guide/general/profiling.html
|
- Source File : i_academy/application/config/rest.php
| [602]| e.g. $config['allowed_origins'] = ['http://www.example.com', 'https://spa.example.com']
|
- Source File : i_academy/application/config/routes.php
| [22]| https://codeigniter.com/user_guide/general/routing.html
|
- Source File : i_academy/application/config/smileys.php
| [13]| https://codeigniter.com/user_guide/helpers/smiley_helper.html
|
- Source File : i_academy/application/controllers/Checker.php
| [9] * http://codecanyon.net/user/Creativeitem
|
| [10] * http://support.creativeitem.com
|
- Source File : i_academy/application/controllers/Install.php
| [9] * http://codecanyon.net/user/Creativeitem
|
| [10] * http://support.creativeitem.com
|
- Source File : i_academy/application/controllers/Modal.php
| [6] * http://codecanyon.net/user/Creativeitem
|
| [7] * http://support.creativeitem.com
|
- Source File : i_academy/application/controllers/Updater.php
| [9] * http://codecanyon.net/user/Creativeitem
|
| [10] * http://support.creativeitem.com
|
- Source File : i_academy/application/helpers/addon_helper.php
| [10]* @license http://codeigniter.com/user_guide/license.html
|
| [11]* @link http://codeigniter.com
|
- Source File : i_academy/application/helpers/common_helper.php
| [10] * @license http://codeigniter.com/user_guide/license.html
|
| [11] * @link http://codeigniter.com
|
- Source File : i_academy/application/helpers/multi_language_helper.php
| [10]* @license http://codeigniter.com/user_guide/license.html
|
| [11]* @link http://codeigniter.com
|
- Source File : i_academy/application/helpers/user_helper.php
| [10] * @license http://codeigniter.com/user_guide/license.html
|
| [11] * @link http://codeigniter.com
|
- Source File : i_academy/application/libraries/Format.php
| [12] * @license http://www.dbad-license.org/
|
| [299] * @link http://www.metashock.de/2014/02/create-csv-file-in-memory-php/
|
- Source File : i_academy/application/libraries/JWT.php
| [11] * https://tools.ietf.org/html/rfc7519
|
| [19] * @license http://opensource.org/licenses/BSD-3-Clause 3-clause BSD
|
| [20] * @link https://github.com/firebase/php-jwt
|
- Source File : i_academy/application/libraries/Paystack.php
| [385] const PAYSTACK_API_ROOT = 'https://api.paystack.co';
|
- Source File : i_academy/application/libraries/REST_Controller.php
| [19] * @link https://github.com/chriskacerguis/codeigniter-restserver
|
| [351] * @link http://www.restapitutorial.com/httpstatuscodes.html
|
| [973] // Check if a file extension is used e.g. http://example.com/api/index.json?param1=param2
|
| [2191] // See http://tools.ietf.org/html/rfc2617#page-5
|
| [2196] // See http://tools.ietf.org/html/rfc2617#page-18
|
- Source File : i_academy/application/libraries/Stripe/update_certs.php
| [12] \CURLOPT_URL => 'https://curl.haxx.se/ca/cacert.pem',
|
- Source File : i_academy/application/libraries/Stripe/phpdoc.dist.xml
| [4] xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
| [5] xmlns="http://www.phpdoc.org"
|
- Source File : i_academy/application/libraries/Stripe/lib/Account.php
| [11] * href="https://stripe.com/docs/connect/accounts">create and manage Express or
|
| [23] * @property string $default_currency Three-letter ISO currency code representing the default currency for the account. This must be a currency that <a href="https://stripe.com/docs/payouts">Stripe supports in the account's country</a>.
|
| [27] * @property \Stripe\Person $individual <p>This is an object representing a person associated with a Stripe account.</p><p>Related guide: <a href="https://stripe.com/docs/connect/identity-verification-api#person-information">Handling Identity Verification with the API</a>.</p>
|
- Source File : i_academy/application/libraries/Stripe/lib/AccountLink.php
| [11] * href="https://stripe.com/docs/connect/connect-onboarding">Connect
|
- Source File : i_academy/application/libraries/Stripe/lib/AlipayAccount.php
| [9] * @see https://stripe.com/docs/sources/alipay
|
| [46] * @see https://stripe.com/docs/sources/alipay
|
| [65] * @see https://stripe.com/docs/sources/alipay
|
- Source File : i_academy/application/libraries/Stripe/lib/ApiRequestor.php
| [318] . 'the Stripe web interface. See https://stripe.com/api for '
|
- Source File : i_academy/application/libraries/Stripe/lib/ApplicationFee.php
| [15] * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
|
- Source File : i_academy/application/libraries/Stripe/lib/ApplicationFeeRefund.php
| [11] * href="https://stripe.com/docs/connect/destination-charges#refunding-app-fee">Refunding
|
| [19] * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
|
- Source File : i_academy/application/libraries/Stripe/lib/Balance.php
| [10] * href="https://stripe.com/docs/reporting/balance-transaction-types">transactions</a>
|
| [17] * href="https://stripe.com/docs/connect/account-balances">Understanding Connect
|
| [21] * @property \Stripe\StripeObject[] $available Funds that are available to ..
|
- Source File : i_academy/application/libraries/Stripe/lib/BalanceTransaction.php
| [11] * href="https://stripe.com/docs/reports/balance-transaction-types">Balance
|
| [19] * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
|
| [25] * @property string $reporting_category <a href="https://stripe.com/docs/reports/reporting-categories">Learn more</a> about how reporting categories can help you understand balance transactions from an accounting perspective.
|
| [28] * @property string $type Transaction type: <code>adjustment</code>, <code>..
|
- Source File : i_academy/application/libraries/Stripe/lib/BankAccount.php
| [9] * href="https://stripe.com/docs/api#external_accounts">External Accounts</a> are
|
| [11] * href="https://stripe.com/docs/connect/custom-accounts">Custom accounts</a>. They
|
| [16] * href="https://stripe.com/docs/payments/ach-bank-transfers">Processing ACH &
|
| [26] * @property string $currency Three-letter <a href="https://stripe.com/docs/payouts">ISO code for the currency</a> paid out to the bank account.
|
| [45] * @see https://stripe.com/docs/api/external_account_bank_accounts/object#account_bank_account_object-status
|
- Source File : i_academy/application/libraries/Stripe/lib/BaseStripeClient.php
| [8] const DEFAULT_API_BASE = 'https://api.stripe.com';
|
| [11] const DEFAULT_CONNECT_BASE = 'https://connect.stripe.com';
|
| [14] const DEFAULT_FILES_BASE = 'https://files.stripe.com';
|
- Source File : i_academy/application/libraries/Stripe/lib/BitcoinReceiver.php
| [7] * @see https://stripe.com/docs/sources/bitcoin
|
| [18] * @property string $currency Three-letter <a href="https://stripe.com/docs/currencies">ISO code for the currency</a> to which the bitcoin will be converted.
|
- Source File : i_academy/application/libraries/Stripe/lib/BitcoinTransaction.php
| [11] * @property string $currency Three-letter <a href="https://stripe.com/docs/currencies">ISO code for the currency</a> to which this transaction was converted.
|
- Source File : i_academy/application/libraries/Stripe/lib/Capability.php
| [9] * href="https://stripe.com/docs/connect/account-capabilities">Account
|
- Source File : i_academy/application/libraries/Stripe/lib/Card.php
| [10] * Related guide: <a href="https://stripe.com/docs/sources/cards">Card Payments
|
| [52] * @see https://stripe.com/docs/api/cards/object#card_object-cvc_check
|
| [62] * @see https://stripe.com/docs/api/cards/object#card_object-funding
|
| [72] * @see https://stripe.com/docs/api/cards/object#card_object-tokenization_method
|
- Source File : i_academy/application/libraries/Stripe/lib/Charge.php
| [11] * href="https://stripe.com/docs/payments/accept-a-payment-charges">Accept a
|
| [16] * @property int $amount Amount intended to be collected by this payment. A.. [19] * @property null|string|\Stripe\ApplicationFee $application_fee The application fee (if any) for the charge. <a href="https://stripe.com/docs/connect/direct-charges#collecting-fees">See the Connect documentation</a> for details.
|
| [20] * @property null|int $application_fee_amount The amount of the application fee (if any) for the charge. <a href="https://stripe.com/docs/connect/direct-charges#collecting-fees">See the Connect documentation</a> for details.
|
| [26] * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
|
| [32] * @property null|string $failure_code Error code explaining reason for charge failure if available (see <a href="https://stripe.com/docs/api#errors">the errors section</a> for a list of codes).
|
| [38] * @property null|string|\Stripe\Account $on_behalf_of The account (if any) the charge was made on behalf of without triggering an automatic transfer. See the <a href="https://stripe.com/docs/connect/charges-transfers">Connect documentation</a> for details.
|
| [40] * @property null|\Stripe\StripeObject $outcome Details about whether the payment was accepted, and why. See <a href="https://stripe.com/docs/declines">understanding declines</a> for details.
|
| [53] * @property null|string|\Stripe\Transfer $source_transfer The transfer ID which created this charge. Only present if the charge came from another Stripe account. <a href="https://stripe.com/docs/connect/destination-charges">See the Connect documentation</a> for details.
|
| [58] * @property null|\Stripe\StripeObject $transfer_data An optional dictionary including the account to automatically transfer to as part of a destination charge. <a href="https://stripe.com/docs/connect/destination-charges">See the Connect documentation</a> for details.
|
| [59] * @property null|string $transfer_group A string that identifies this transaction as part of a group. See the <a href="https://stripe.com/docs/connect/charges-transfers#transfer-options">Connect documentation</a> for details.
|
| [78] * @see https://stripe.com/docs/declines/codes
|
- Source File : i_academy/application/libraries/Stripe/lib/CountrySpec.php
| [18] * @property string[] $supported_payment_methods Payment methods available ..
|
- Source File : i_academy/application/libraries/Stripe/lib/Coupon.php
| [8] * href="https://stripe.com/docs/api#invoices">invoices</a> or <a
|
| [9] * href="https://stripe.com/docs/api#create_order-coupon">orders</a>. Coupons do
|
| [11] * href="https://stripe.com/docs/api#create_charge">charges</a>.
|
| [17] * @property null|string $currency If <code>amount_off</code> has been set, the three-letter <a href="https://stripe.com/docs/currencies">ISO code for the currency</a> of the amount to take off.
|
- Source File : i_academy/application/libraries/Stripe/lib/CreditNote.php
| [10] * href="https://stripe.com/docs/billing/invoices/credit-notes">Credit Notes</a>.
|
| [16] * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
|
| [30] * @property string $status Status of this credit note, one of <code>issued</code> or <code>void</code>. Learn more about <a href="https://stripe.com/docs/billing/invoices/credit-notes#voiding">voiding credit notes</a>.
|
- Source File : i_academy/application/libraries/Stripe/lib/Customer.php
| [12] * href="https://stripe.com/docs/payments/save-during-payment">Save a card during
|
| [20] * @property null|string $currency Three-letter <a href="https://stripe.com/docs/currencies">ISO code for the currency</a> the customer can be charged in for recurring billing purposes.
|
| [21] * @property null|string|\Stripe\StripeObject $default_source <p>ID of the ..
|
- Source File : i_academy/application/libraries/Stripe/lib/CustomerBalanceTransaction.php
| [7] * href="https://stripe.com/docs/api/customers/object#customer_object-balance"><code>balance</code></a>
|
| [10] * <a href="https://stripe.com/docs/api/customers/update">update customer API</a>,
|
| [15] * href="https://stripe.com/docs/billing/customer/balance">Customer Balance</a> to
|
| [23] * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
|
| [30] * @property string $type Transaction type: <code>adjustment</code>, <code>..
|
- Source File : i_academy/application/libraries/Stripe/lib/Dispute.php
| [12] * Related guide: <a href="https://stripe.com/docs/disputes">Disputes and
|
| [21] * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
|
| [29] * @property string $reason Reason given by cardholder for dispute. Possibl..
|
- Source File : i_academy/application/libraries/Stripe/lib/ErrorObject.php
| [40] * @see https://stripe.com/docs/error-codes
|
- Source File : i_academy/application/libraries/Stripe/lib/Event.php
| [22] * href="https://stripe.com/docs/api#retrieve_event">individual event</a> or a <a
|
| [23] * href="https://stripe.com/docs/api#list_events">list of events</a> from the API.
|
| [25] * href="http://en.wikipedia.org/wiki/Webhook">webhooks</a> system for sending the
|
| [27] * managed in your <a href="https://dashboard.stripe.com/account/webhooks'">account
|
| [28] * settings</a>, and our <a href="https://stripe.com/docs/webhooks">Using
|
| [31] * When using <a href="https://stripe.com/docs/connect">Connect</a>, you can also
|
| [37] * href="https://stripe.com/docs/api#retrieve_event">Retrieve Event API</a> is
|
| [61] * @see https://stripe.com/docs/api#event_types
|
- Source File : i_academy/application/libraries/Stripe/lib/ExchangeRate.php
| [15] * Please refer to our <a href="https://stripe.com/docs/exchange-rates">Exchange
|
| [18] * @property string $id Unique identifier for the object. Represented as the three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a> in lowercase.
|
- Source File : i_academy/application/libraries/Stripe/lib/File.php
| [8] * href="https://stripe.com/docs/api#create_file">create file</a> request (for
|
| [13] * Related guide: <a href="https://stripe.com/docs/file-upload">File Upload
|
| [20] * @property null|\Stripe\Collection $links A list of <a href="https://stripe.com/docs/api#file_links">file links</a> that point at this file.
|
- Source File : i_academy/application/libraries/Stripe/lib/Invoice.php
| [9] * They contain <a href="https://stripe.com/docs/api#invoiceitems">invoice
|
| [16] * href="https://stripe.com/docs/billing/invoices/workflow/#auto_advance">when
|
| [24] * your <a href="https://dashboard.stripe.com/account/billing/automatic'">email
|
| [37] * href="https://stripe.com/docs/api/customers/object#customer_object-account_balance">here</a>.
|
| [39] * Related guide: <a href="https://stripe.com/docs/billing/invoices/sending">Send
|
| [52] * @property bool $auto_advance Controls whether Stripe will perform <a href="https://stripe.com/docs/billing/invoices/workflow/#auto_advance">automatic collection</a> of the invoice. When <code>false</code>, the invoice's state will not automatically advance without an explicit action.
|
| [57] * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
|
| [91] * @property null|string $status The status of the invoice, one of <code>draft</code>, <code>open</code>, <code>paid</code>, <code>uncollectible</code>, or <code>void</code>. <a href="https://stripe.com/docs/billing/invoices/workflow#workflow-overview">Learn more</a>
|
| [101] * @property null|int $webhooks_delivered_at Invoices are automatically pai..
|
- Source File : i_academy/application/libraries/Stripe/lib/InvoiceItem.php
| [12] * href="https://stripe.com/docs/billing/invoices/subscription#adding-upcoming-invoice-items">Subscription
|
| [18] * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
|
- Source File : i_academy/application/libraries/Stripe/lib/InvoiceLineItem.php
| [9] * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
|
| [12] * @property string $invoice_item The ID of the <a href="https://stripe.com/docs/api/invoiceitems">invoice item</a> associated with this line item if any.
|
- Source File : i_academy/application/libraries/Stripe/lib/LineItem.php
| [12] * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
|
| [14] * @property \Stripe\Price $price <p>Prices define the unit cost, currency,..
|
- Source File : i_academy/application/libraries/Stripe/lib/OAuth.php
| [91] . 'https://dashboard.stripe.com/account/applications/settings, '
|
| [93] . 'https://stripe.com/docs/connect/standard-accounts for details, '
|
- Source File : i_academy/application/libraries/Stripe/lib/Order.php
| [7] * defined <a href="https://stripe.com/docs/api#products">products</a>. You can
|
| [11] * Related guide: <a href="https://stripe.com/docs/orders">Tax, Shipping, and
|
| [22] * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
|
| [33] * @property string $status Current order status. One of <code>created</code>, <code>paid</code>, <code>canceled</code>, <code>fulfilled</code>, or <code>returned</code>. More details in the <a href="https://stripe.com/docs/orders/guide#understanding-order-statuses">Orders Guide</a>.
|
- Source File : i_academy/application/libraries/Stripe/lib/OrderReturn.php
| [7] * href="https://stripe.com/docs/api#order_items">order items</a>. Returns always
|
| [11] * href="https://stripe.com/docs/orders/guide#handling-returns">Handling
|
| [18] * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
|
- Source File : i_academy/application/libraries/Stripe/lib/PaymentIntent.php
| [12] * href="https://stripe.com/docs/payments/intents#intent-statuses">multiple
|
| [17] * href="https://stripe.com/docs/payments/payment-intents">Payment Intents API</a>.
|
| [21] * @property int $amount Amount intended to be collected by this PaymentInt.. [25] * @property null|int $application_fee_amount The amount of the application fee (if any) for the resulting payment. See the PaymentIntents <a href="https://stripe.com/docs/payments/connected-accounts">use case for connected accounts</a> for details.
|
| [30] * @property null|string $client_secret <p>The client secret of this Paymen.. [33] * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
|
| [34] * @property null|string|\Stripe\Customer $customer <p>ID of the Customer t.. [39] * @property \Stripe\StripeObject $metadata Set of key-value pairs that you.. [41] * @property null|string|\Stripe\Account $on_behalf_of The account (if any) for which the funds of the PaymentIntent are intended. See the PaymentIntents <a href="https://stripe.com/docs/payments/connected-accounts">use case for connected accounts</a> for details.
|
| [47] * @property null|string $setup_future_usage <p>Indicates that you intend t.. [52] * @property string $status Status of this PaymentIntent, one of <code>requ.. [53] * @property null|\Stripe\StripeObject $transfer_data The data with which to automatically create a Transfer when the payment is finalized. See the PaymentIntents <a href="https://stripe.com/docs/payments/connected-accounts">use case for connected accounts</a> for details.
|
| [54] * @property null|string $transfer_group A string that identifies the resulting payment as part of a group. See the PaymentIntents <a href="https://stripe.com/docs/payments/connected-accounts">use case for connected accounts</a> for details.
|
- Source File : i_academy/application/libraries/Stripe/lib/PaymentMethod.php
| [8] * href="https://stripe.com/docs/payments/payment-intents">PaymentIntents</a> to
|
| [13] * href="https://stripe.com/docs/payments/payment-methods">Payment Methods</a> and
|
| [14] * <a href="https://stripe.com/docs/payments/more-payment-scenarios">More Payment
|
- Source File : i_academy/application/libraries/Stripe/lib/Payout.php
| [13] * Related guide: <a href="https://stripe.com/docs/payouts">Receiving Payouts</a>.
|
| [19] * @property bool $automatic Returns <code>true</code> if the payout was created by an <a href="https://stripe.com/docs/payouts#payout-schedule">automated payout schedule</a>, and <code>false</code> if it was <a href="https://stripe.com/docs/payouts#manual-payouts">requested manually</a>.
|
| [22] * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
|
| [26] * @property null|string $failure_code Error code explaining reason for payout failure if available. See <a href="https://stripe.com/docs/api#payout_failures">Types of payout failures</a> for a list of failure codes.
|
| [30] * @property string $method The method used to send this payout, which can ..
|
- Source File : i_academy/application/libraries/Stripe/lib/Person.php
| [9] * href="https://stripe.com/docs/connect/identity-verification-api#person-information">Handling
|
- Source File : i_academy/application/libraries/Stripe/lib/Plan.php
| [7] * href="https://stripe.com/docs/api#prices">Prices API</a>. It replaces the Plans
|
| [11] * of products. <a href="https://stripe.com/docs/api#products">Products</a> help
|
| [21] * href="https://stripe.com/docs/billing/subscriptions/set-up-subscription">Set up
|
| [23] * href="https://stripe.com/docs/billing/prices-guide">products and prices</a>.
|
| [33] * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
|
| [43] * @property null|int $trial_period_days Default number of trial days when subscribing a customer to this plan using <a href="https://stripe.com/docs/api#create_subscription-trial_from_plan"><code>trial_from_plan=true</code></a>.
|
- Source File : i_academy/application/libraries/Stripe/lib/Price.php
| [8] * href="https://stripe.com/docs/api#products">Products</a> help you track
|
| [18] * href="https://stripe.com/docs/billing/subscriptions/set-up-subscription">Set up
|
| [20] * href="https://stripe.com/docs/billing/invoices/create">create an invoice</a>,
|
| [21] * and more about <a href="https://stripe.com/docs/billing/prices-guide">products
|
| [29] * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
|
- Source File : i_academy/application/libraries/Stripe/lib/Product.php
| [9] * conjunction with <a href="https://stripe.com/docs/api#prices">Prices</a> to
|
| [13] * href="https://stripe.com/docs/billing/subscriptions/set-up-subscription">Set up
|
| [15] * href="https://stripe.com/docs/payments/checkout/client#create-products">one-time
|
| [17] * href="https://stripe.com/docs/billing/prices-guide">Products and Prices</a>
|
- Source File : i_academy/application/libraries/Stripe/lib/Recipient.php
| [12] * href="https://stripe.com/docs/connect">Connect</a>, specifically Connect's much
|
| [13] * more powerful <a href="https://stripe.com/docs/api#account">Account objects</a>.
|
| [17] * href="https://stripe.com/docs/connect/recipient-account-migrations">migration
|
| [30] * @property null|string|\Stripe\Account $migrated_to The ID of the <a href="https://stripe.com/docs/connect/custom-accounts">Custom account</a> this recipient was migrated to. If set, the recipient can no longer be updated, nor can transfers be made to it: use the Custom account instead.
|
- Source File : i_academy/application/libraries/Stripe/lib/Refund.php
| [10] * Related guide: <a href="https://stripe.com/docs/refunds">Refunds</a>.
|
| [18] * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
|
| [27] * @property null|string $status Status of the refund. For credit card refu..
|
- Source File : i_academy/application/libraries/Stripe/lib/Review.php
| [10] * href="https://stripe.com/docs/radar/reviews">here</a>.
|
| [39] * @see https://stripe.com/docs/api/radar/reviews/object
|
- Source File : i_academy/application/libraries/Stripe/lib/SetupIntent.php
| [10] * href="https://stripe.com/docs/api#payment_intents">PaymentIntents</a> to drive
|
| [16] * href="https://stripe.com/docs/payments/intents#intent-statuses">statuses</a> as
|
| [23] * href="https://stripe.com/docs/strong-customer-authentication">Strong Customer
|
| [26] * href="https://stripe.com/docs/payments/setup-intents">off-session payments</a>.
|
| [28] * href="https://stripe.com/docs/api#setup_intent_object-customer">Customer</a>,
|
| [31] * href="https://stripe.com/docs/api#payment_intent_object-setup_future_usage">setup_future_usage</a>
|
| [38] * Related guide: <a href="https://stripe.com/docs/payments/setup-intents">Setup
|
| [59] * @property string $status <a href="https://stripe.com/docs/payments/inten..
|
- Source File : i_academy/application/libraries/Stripe/lib/SKU.php
| [7] * href="http://en.wikipedia.org/wiki/Stock_keeping_unit">stock keeping units</a>.
|
| [15] * Related guide: <a href="https://stripe.com/docs/orders">Tax, Shipping, and
|
| [23] * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
|
- Source File : i_academy/application/libraries/Stripe/lib/Source.php
| [11] * Related guides: <a href="https://stripe.com/docs/sources">Sources API</a> and <a
|
| [12] * href="https://stripe.com/docs/sources/customers">Sources & Customers</a>.
|
| [28] * @property null|string $currency Three-letter <a href="https://stripe.com/docs/currencies">ISO code for the currency</a> associated with the source. This is the currency for which the source will be chargeable once ready. Required for <code>single_use</code> sources.
|
| [49] * @property string $type The <code>type</code> of the source. The <code>ty..
|
- Source File : i_academy/application/libraries/Stripe/lib/Stripe.php
| [17] public static $apiBase = 'https://api.stripe.com';
|
| [20] public static $connectBase = 'https://connect.stripe.com';
|
| [23] public static $apiUploadBase = 'https://files.stripe.com';
|
- Source File : i_academy/application/libraries/Stripe/lib/Subscription.php
| [9] * href="https://stripe.com/docs/billing/subscriptions/creating">Creating
|
| [37] * @property null|\Stripe\StripeObject $pending_invoice_item_interval Speci.. [38] * @property null|string|\Stripe\SetupIntent $pending_setup_intent You can .. [39] * @property null|\Stripe\StripeObject $pending_update If specified, <a href="https://stripe.com/docs/billing/subscriptions/pending-updates">pending updates</a> that will be applied to the subscription once the <code>latest_invoice</code> has been paid.
|
- Source File : i_academy/application/libraries/Stripe/lib/SubscriptionItem.php
| [14] * @property \Stripe\Plan $plan <p>You can now model subscriptions more fle.. [15] * @property \Stripe\Price $price <p>Prices define the unit cost, currency,.. [16] * @property int $quantity The <a href="https://stripe.com/docs/subscriptions/quantities">quantity</a> of the plan to which the customer should be subscribed.
|
- Source File : i_academy/application/libraries/Stripe/lib/SubscriptionSchedule.php
| [10] * href="https://stripe.com/docs/billing/subscriptions/subscription-schedules">Subscription
|
| [27] * @property string $status The present status of the subscription schedule..
|
- Source File : i_academy/application/libraries/Stripe/lib/TaxId.php
| [7] * href="https://stripe.com/docs/api/customers">customer</a>. A customer's tax IDs
|
| [10] * Related guide: <a href="https://stripe.com/docs/billing/taxes/tax-ids">Customer
|
- Source File : i_academy/application/libraries/Stripe/lib/TaxRate.php
| [8] * Related guide: <a href="https://stripe.com/docs/billing/taxes/tax-rates">Tax
|
- Source File : i_academy/application/libraries/Stripe/lib/ThreeDSecure.php
| [14] * @property \Stripe\Card $card <p>You can store multiple cards on a custom.. [16] * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
|
- Source File : i_academy/application/libraries/Stripe/lib/Token.php
| [10] * href="https://stripe.com/docs/payments">recommended payments integrations</a> to
|
| [24] * href="https://stripe.com/docs/api#customers">Customer</a> objects or <a
|
| [25] * href="https://stripe.com/docs/api#external_accounts">Custom accounts</a>. Note
|
| [26] * that <a href="https://stripe.com/docs/radar">Radar</a>, our integrated solution
|
| [31] * href="https://stripe.com/docs/payments/accept-a-payment-charges#web-create-token">Accept
|
| [36] * @property \Stripe\BankAccount $bank_account <p>These bank accounts are p.. [37] * @property \Stripe\Card $card <p>You can store multiple cards on a custom..
|
- Source File : i_academy/application/libraries/Stripe/lib/Topup.php
| [10] * Related guide: <a href="https://stripe.com/docs/connect/top-ups">Topping Up your
|
| [18] * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
|
| [21] * @property null|string $failure_code Error code explaining reason for top-up failure if available (see <a href="https://stripe.com/docs/api#errors">the errors section</a> for a list of codes).
|
| [25] * @property \Stripe\Source $source <p><code>Source</code> objects allow yo..
|
- Source File : i_academy/application/libraries/Stripe/lib/Transfer.php
| [11] * <a href="https://stripe.com/docs/api#payout_object">Payout</a> object, with
|
| [13] * href="https://stripe.com/docs/transfer-payout-split">transfer/payout split</a>.
|
| [16] * href="https://stripe.com/docs/connect/charges-transfers">Creating Separate
|
| [25] * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
|
| [35] * @property null|string $transfer_group A string that identifies this transaction as part of a group. See the <a href="https://stripe.com/docs/connect/charges-transfers#transfer-options">Connect documentation</a> for details.
|
- Source File : i_academy/application/libraries/Stripe/lib/TransferReversal.php
| [6] * <a href="https://stripe.com/docs/connect">Stripe Connect</a> platforms can
|
| [15] * href="https://stripe.com/docs/connect/charges-transfers#transfer-options">transfer_group</a>
|
| [20] * href="https://stripe.com/docs/connect/charges-transfers#reversing-transfers">Reversing
|
| [28] * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
|
- Source File : i_academy/application/libraries/Stripe/lib/UsageRecord.php
| [10] * href="https://stripe.com/docs/billing/subscriptions/metered-billing">Metered
|
- Source File : i_academy/application/libraries/Stripe/lib/WebhookEndpoint.php
| [6] * You can configure <a href="https://stripe.com/docs/webhooks/">webhook
|
| [11] * href="https://dashboard.stripe.com/webhooks">the dashboard</a>, which provides a
|
| [14] * Related guide: <a href="https://stripe.com/docs/webhooks/configure">Setting up
|
| [26] * @property string $secret The endpoint's secret, used to generate <a href="https://stripe.com/docs/webhooks/signatures">webhook signatures</a>. Only returned at creation.
|
- Source File : i_academy/application/libraries/Stripe/lib/BillingPortal/Session.php
| [14] * href="https://stripe.com/docs/billing/subscriptions/integrating-customer-portal">Billing
|
- Source File : i_academy/application/libraries/Stripe/lib/Checkout/Session.php
| [8] * href="https://stripe.com/docs/payments/checkout">Checkout</a>. We recommend
|
| [12] * <a href="https://stripe.com/docs/api/customers">Customer</a>, and either the
|
| [14] * href="https://stripe.com/docs/api/payment_intents">PaymentIntent</a> or an
|
| [15] * active <a href="https://stripe.com/docs/api/subscriptions">Subscription</a>.
|
| [20] * Related guide: <a href="https://stripe.com/docs/payments/checkout/api">Checkout
|
- Source File : i_academy/application/libraries/Stripe/lib/HttpClient/CurlClient.php
| [363] . 'https://twitter.com/stripestatus, or';
|
| [522] // (cf. https://github.com/curl/curl/issues/2416), which Stripe use.
|
- Source File : i_academy/application/libraries/Stripe/lib/Issuing/Authorization.php
| [6] * When an <a href="https://stripe.com/docs/issuing">issued card</a> is used to
|
| [8] * href="https://stripe.com/docs/issuing/purchases/authorizations">Authorizations</a>
|
| [12] * href="https://stripe.com/docs/issuing/purchases/authorizations">Issued Card
|
| [17] * @property int $amount The total amount that was authorized or rejected. This amount is in the card's currency and in the <a href="https://stripe.com/docs/currencies#zero-decimal">smallest currency unit</a>.
|
| [21] * @property \Stripe\Issuing\Card $card You can <a href="https://stripe.com/docs/issuing/cards">create physical or virtual cards</a> that are issued to cardholders.
|
| [24] * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
|
| [26] * @property int $merchant_amount The total amount that was authorized or rejected. This amount is in the <code>merchant_currency</code> and in the <a href="https://stripe.com/docs/currencies#zero-decimal">smallest currency unit</a>.
|
| [27] * @property string $merchant_currency The currency that was presented to the cardholder for the authorization. Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
|
| [31] * @property \Stripe\StripeObject[] $request_history History of every time .. [33] * @property \Stripe\Issuing\Transaction[] $transactions List of <a href="https://stripe.com/docs/api/issuing/transactions">transactions</a> associated with this authorization.
|
- Source File : i_academy/application/libraries/Stripe/lib/Issuing/Card.php
| [6] * You can <a href="https://stripe.com/docs/issuing/cards">create physical or
|
| [13] * @property \Stripe\Issuing\Cardholder $cardholder <p>An Issuing <code>Car.. [15] * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
|
| [16] * @property string $cvc The card's CVC. For security reasons, this is only.. [22] * @property string $number The full unredacted card number. For security r..
|
- Source File : i_academy/application/libraries/Stripe/lib/Issuing/Cardholder.php
| [7] * entity who is <a href="https://stripe.com/docs/issuing">issued</a> cards.
|
| [10] * href="https://stripe.com/docs/issuing/cards#create-cardholder">How to create a
|
| [25] * @property null|\Stripe\StripeObject $spending_controls Spending rules that give you some control over how this cardholder's cards can be used. Refer to our <a href="https://stripe.com/docs/issuing/purchases/authorizations">authorizations</a> documentation for more details.
|
- Source File : i_academy/application/libraries/Stripe/lib/Issuing/Dispute.php
| [6] * As a <a href="https://stripe.com/docs/issuing">card issuer</a>, you can <a
|
| [7] * href="https://stripe.com/docs/issuing/purchases/disputes">dispute</a>
|
| [12] * href="https://stripe.com/docs/issuing/purchases/disputes">Disputing
|
- Source File : i_academy/application/libraries/Stripe/lib/Issuing/Transaction.php
| [6] * Any use of an <a href="https://stripe.com/docs/issuing">issued card</a> that
|
| [12] * href="https://stripe.com/docs/issuing/purchases/transactions">Issued Card
|
| [17] * @property int $amount The transaction amount, which will be reflected in your balance. This amount is in your currency and in the <a href="https://stripe.com/docs/currencies#zero-decimal">smallest currency unit</a>.
|
| [19] * @property null|string|\Stripe\BalanceTransaction $balance_transaction ID of the <a href="https://stripe.com/docs/api/balance_transactions">balance transaction</a> associated with this transaction.
|
| [23] * @property string $currency Three-letter <a href="https://www.iso.org/iso-4217-currency-codes.html">ISO currency code</a>, in lowercase. Must be a <a href="https://stripe.com/docs/currencies">supported currency</a>.
|
| [25] * @property int $merchant_amount The amount that the merchant will receive..
|
- Source File : i_academy/application/libraries/Stripe/lib/Radar/EarlyFraudWarning.php
| [10] * href="https://stripe.com/docs/disputes/measuring#early-fraud-warnings">Early
|
- Source File : i_academy/application/libraries/Stripe/lib/Radar/ValueList.php
| [10] * href="https://stripe.com/docs/radar/lists#managing-list-items">Default Stripe
|
- Source File : i_academy/application/libraries/Stripe/lib/Radar/ValueListItem.php
| [10] * href="https://stripe.com/docs/radar/lists#managing-list-items">Managing List
|
- Source File : i_academy/application/libraries/Stripe/lib/Reporting/ReportRun.php
| [10] * href="https://stripe.com/docs/reporting/statements/api">API Access to
|
| [15] * href="https://stripe.com/docs/keys#test-live-modes">live-mode API key</a>.
|
| [23] * @property string $report_type The ID of the <a href="https://stripe.com/docs/reporting/statements/api#report-types">report type</a> to run, such as <code>"balance.summary.1"</code>.
|
- Source File : i_academy/application/libraries/Stripe/lib/Reporting/ReportType.php
| [9] * href="https://stripe.com/docs/reporting/statements/api">API Access to Reports
|
| [15] * href="https://stripe.com/docs/keys#test-live-modes">live-mode API key</a>.
|
| [17] * @property string $id The <a href="https://stripe.com/docs/reporting/statements/api#available-report-types">ID of the Report Type</a>, such as <code>balance.summary.1</code>.
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/AccountService.php
| [78] * href="https://dashboard.stripe.com/account/applications/settings">register your
|
| [154] * href="https://dashboard.stripe.com/account">account information tab in your
|
| [286] * href="https://dashboard.stripe.com/account">Dashboard</a>. Refer to our <a
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/CouponService.php
| [24] * href="https://dashboard.stripe.com/coupons">coupon management</a> page of the
|
| [52] * href="https://dashboard.stripe.com/coupons">coupon management</a> page of the
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/DisputeService.php
| [62] * href="https://dashboard.stripe.com/disputes">dashboard</a>, but if you prefer,
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/InvoiceService.php
| [117] * href="https://dashboard.stripe.com/account/billing/automatic">subscriptions
|
| [152] * href="https://dashboard.stripe.com/account/billing/automatic">subscriptions
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/PlanService.php
| [24] * href="https://dashboard.stripe.com/products">Dashboard</a>.
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/SubscriptionItemService.php
| [70] * href="https://stripe.com/docs/billing/subscriptions/metered-billing">metered
|
| [85] * href="https://stripe.com/docs/billing/subscriptions/tiers">tiered pricing</a>
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/WebhookEndpointService.php
| [30] * href="https://dashboard.stripe.com/account/webhooks">webhooks settings</a>
|
| [47] * href="https://dashboard.stripe.com/account/webhooks">webhook endpoint
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/Reporting/ReportRunService.php
| [9] * <a href="https://stripe.com/docs/keys#test-live-modes">live-mode API key</a>.).
|
| [25] * href="https://stripe.com/docs/keys#test-live-modes">live-mode API key</a>.).
|
| [41] * href="https://stripe.com/docs/keys#test-live-modes">live-mode API key</a>.).
|
- Source File : i_academy/application/libraries/Stripe/lib/Service/Reporting/ReportTypeService.php
| [9] * href="https://stripe.com/docs/keys#test-live-modes">live-mode API key</a>.).
|
| [25] * href="https://stripe.com/docs/keys#test-live-modes">live-mode API key</a>.).
|
- Source File : i_academy/application/libraries/Stripe/lib/Sigma/ScheduledQueryRun.php
| [6] * If you have <a href="https://stripe.com/docs/sigma/scheduled-queries">scheduled
|
- Source File : i_academy/application/libraries/Stripe/lib/Terminal/ConnectionToken.php
| [9] * href="https://stripe.com/docs/terminal/readers/fleet-management#create">Fleet
|
- Source File : i_academy/application/libraries/Stripe/lib/Terminal/Location.php
| [9] * href="https://stripe.com/docs/terminal/readers/fleet-management#create">Fleet
|
- Source File : i_academy/application/libraries/Stripe/lib/Terminal/Reader.php
| [9] * href="https://stripe.com/docs/terminal/readers/connecting">Connecting to a
|
- Source File : i_academy/application/libraries/Stripe/lib/Util/LoggerInterface.php
| [13] * See https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md
|
- Source File : i_academy/application/models/Api_instructor_model.php
| [720] // $mobile_app_lesson_url = "https://www.html5rocks.com/en/tutorials/video/basics/devstories.webm";
|
| [994] // $mobile_app_lesson_url = "https://www.html5rocks.com/en/tutorials/video/basics/devstories.webm";
|
- Source File : i_academy/application/models/Crud_model.php
| [1064] $mobile_app_lesson_url = "https://www.html5rocks.com/en/tutorials/video/basics/devstories.webm";
|
| [1298] $mobile_app_lesson_url = "https://www.html5rocks.com/en/tutorials/video/basics/devstories.webm";
|
| [1999] $url = "https://api.envato.com/v3/market/author/sale?code=" . $product_code;
|
| [2009] $verify_url = 'https://api.envato.com/v1/market/private/user/verify-purchase:' . $product_code . '.json';
|
| [2353] $url = "https://api.envato.com/v3/market/author/sale?code=" . $purchase_code;
|
| [2363] $verify_url = 'https://api.envato.com/v1/market/private/user/verify-purchase:' . $purchase_code . '.json';
|
| [2752] $url = 'https://www.google.com/recaptcha/api/siteverify';
|
- Source File : i_academy/application/models/Payment_model.php
| [128] $paypalURL = 'https://api.sandbox.paypal.com/v1/';
|
| [130] $paypalURL = 'https://api.paypal.com/v1/';
|
- Source File : i_academy/application/models/Video_model.php
| [29] $url = 'https://www.googleapis.com/youtube/v3/videos';
|
| [70] $hash = json_decode(file_get_contents("https://api.vimeo.com/videos/{$video_id}",false, $context));
|
| [81] 'embed_video' => "https://player.vimeo.com/video/" . $video_id,
|
| [86] $hash = json_decode(file_get_contents("https://www.googleapis.com/youtube/v3/videos?part=snippet,contentDetails&id=".$video_id."&key=".$youtube_api_key.""));
|
| [100] 'thumbnail' => 'https://i.ytimg.com/vi/'.$hash->items[0]->id.'/default.jpg',
|
| [101] 'video' => "http://www.youtube.com/watch?v=" . $hash->items[0]->id,
|
| [102] 'embed_video' => "http://www.youtube.com/embed/" . $hash->items[0]->id,
|
- Source File : i_academy/application/views/backend/includes_top.php
| [21]<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-tagsinput/0.8.0/bootstrap-tagsinput.css">
|
| [23]<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> -->
|
- Source File : i_academy/application/views/backend/admin/about.php
| [29] <a href="https://codecanyon.net/user/creativeitem/portfolio"
|
| [82] <span class="float-right"><a href="http://support.creativeitem.com" target="_blank" style="color: #343a40;"> <i class="mdi mdi-telegram"></i> <?php echo get_phrase('customer_support'); ?> </a> </span>
|
- Source File : i_academy/application/views/backend/admin/about_this_addon.php
| [6]<p><?php echo get_phrase('for_more_details_check_out_our'); ?> <a href="http://academy-lms.com/" target="_blank"><?php echo get_phrase('website'); ?></a> </p>
|
- Source File : i_academy/application/views/backend/admin/addons.php
| [6] <a href="https://academy-lms.com/addons" target="_blank" class="btn btn-outline-primary btn-rounded alignToTitle"> <i class="mdi mdi-cart"></i> <?php echo get_phrase('buy_new_addon'); ?></a>
|
- Source File : i_academy/application/views/backend/admin/available_addon.php
| [17] <iframe scrolling="yes" class="col-md-12 w-100" frameborder="none" style="height: 510px;" src="http://academy-lms.com/mobile.php"></iframe>
|
- Source File : i_academy/application/views/backend/admin/course_add.php
| [298] <input type="text" class="form-control" name="course_overview_url" id="course_overview_url" placeholder="E.g: https://www.youtube.com/watch?v=oBtf8Yglw2w">
|
- Source File : i_academy/application/views/backend/admin/course_edit.php
| [480] <input type="text" class="form-control" name="course_overview_url" id="course_overview_url" placeholder="E.g: https://www.youtube.com/watch?v=oBtf8Yglw2w" value="<?php echo $course_details['video_url'] ?>">
|
- Source File : i_academy/application/views/backend/admin/paypal_checkout_for_instructor_revenue.php
| [29] <img src="https://www.paypalobjects.com/webstatic/i/logo/rebrand/ppcom-white.svg" width="25%;"
|
| [32] <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
| [33] <script src="https://www.paypalobjects.com/api/checkout.js"></script>
|
- Source File : i_academy/application/views/backend/admin/stripe_payment_gateway_form.php
| [15]<script src="https://js.stripe.com/v3/"></script>
|
- Source File : i_academy/application/views/backend/admin/system_settings.php
| [65] <label for="youtube_api_key"><?php echo get_phr.. [70] <label for="vimeo_api_key"><?php echo get_phrase('vimeo_API_key'); ?><span class="required">*</span> <a href = "https://www.youtube.com/watch?v=Wwy9aibAd54" target = "_blank" style="color: #a7a4a4">(<?php echo get_phrase('get_Vimeo_API_key'); ?>)</a></label>
|
- Source File : i_academy/application/views/backend/admin/theme_settings.php
| [19] <a href="https://academy-lms.com/themes" target="_blank" class="btn btn-outline-primary btn-rounded alignToTitle"> <i class="mdi mdi-cart"></i> <?php echo get_phrase('buy_new_theme'); ?></a>
|
- Source File : i_academy/application/views/backend/admin/video_player.php
| [32] <iframe height="500" src="<?php echo $video_url;?>?origin=https://plyr.io&iv_load_policy=3&modestbranding=1&playsinline=1&showinfo=0&rel=0&enablejsapi=1" allowfullscreen allowtransparency allow="autoplay"></iframe>
|
| [43] <iframe height="500" src="https://playe..
|
- Source File : i_academy/application/views/backend/user/course_add.php
| [299] <input type="text" class="form-control" name="course_overview_url" id="course_overview_url" placeholder="E.g: https://www.youtube.com/watch?v=oBtf8Yglw2w">
|
- Source File : i_academy/application/views/backend/user/course_edit.php
| [481] <input type="text" class="form-control" name="course_overview_url" id="course_overview_url" placeholder="E.g: https://www.youtube.com/watch?v=oBtf8Yglw2w" value="<?php echo $course_details['video_url'] ?>">
|
- Source File : i_academy/application/views/email/common_template.php
| [1]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
| [11] @import url("https://fonts.googleapis.com/css?family=Nunito+Sans:400,700&display=swap");
|
- Source File : i_academy/application/views/email/email_verification.php
| [1]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
| [11] @import url("https://fonts.googleapis.com/css?family=Nunito+Sans:400,700&display=swap");
|
- Source File : i_academy/application/views/email/template.php
| [3]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
| [13] @import url("https://fonts.googleapis.com/css?family=Nunito+Sans:400,700&display=swap");
|
- Source File : i_academy/application/views/frontend/default/admin_login.php
| [2] <script src="https://www.google.com/recaptcha/api.js" async defer></script>
|
- Source File : i_academy/application/views/frontend/default/course_page.php
| [550] <iframe height="500" src="<?php echo $course_details['video_url']; ?>?origin=https://plyr.io&iv_load_policy=3&modestbranding=1&playsinline=1&showinfo=0&rel=0&enablejsapi=1" allowfullscreen allowtransparency allow="autoplay"></iframe>
|
| [562] <iframe height="500" src="https://player.vimeo.com/video/<?php echo $video_details['video_id']; ?>?loop=false&byline=false&portrait=false&title=false&speed=true&transparent=0&gesture=media" allowfullscreen allowtransparency allow="autoplay"></iframe>
|
- Source File : i_academy/application/views/frontend/default/includes_bottom.php
| [17]<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.form/4.2.2/jquery.form.min.js" integrity="sha384-FzT3vTVGXqf7wRfy8k4BiyzvbNfeYjK+frTVqZeNDFl8woCbF0CYG6g2fMEFFo/i" crossorigin="anonymous"></script>
|
- Source File : i_academy/application/views/frontend/default/includes_top.php
| [17]<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,700" rel="stylesheet">
|
- Source File : i_academy/application/views/frontend/default/lessons.php
| [98] <iframe height="500" src="<?php echo $video_url;?>?origin=https://plyr.io&iv_load_policy=3&modestbranding=1&playsinline=1&showinfo=0&rel=0&enablejsapi=1" allowfullscreen allowtransparency allow="autoplay"></iframe>
|
| [112] <iframe height="500" src="https://player.vimeo.com/video/<?php echo $video_id; ?>?loop=false&byline=false&portrait=false&title=false&speed=true&transparent=0&gesture=media" allowfullscreen allowtransparency allow="autoplay"></iframe>
|
- Source File : i_academy/application/views/frontend/default/login.php
| [2] <script src="https://www.google.com/recaptcha/api.js" async defer></script>
|
- Source File : i_academy/application/views/frontend/default/my_notifications.php
| [26] Daragh Walsh made an announcement: <b>Please tick all the subjects you would like to learn about in the form below. Thanks in advance! https://goo.gl/forms/6r3tZjtXlpD31jju1</b>
|
| [43] Daragh Walsh made an announcement: <b>Please tick all the subjects you would like to learn about in the form below. Thanks in advance! https://goo.gl/forms/6r3tZjtXlpD31jju1</b>
|
| [60] Daragh Walsh made an announcement: <b>Please tick all the subjects you would like to learn about in the form below. Thanks in advance! https://goo.gl/forms/6r3tZjtXlpD31jju1</b>
|
| [77] Daragh Walsh made an announcement: <b>Please tick all the subjects you would like to learn about in the form below. Thanks in advance! https://goo.gl/forms/6r3tZjtXlpD31jju1</b>
|
| [94] Daragh Walsh made an announcement: <b>Please tick all the subjects you would like to learn about in the form below. Thanks in advance! https://goo.gl/forms/6r3tZjtXlpD31jju1</b>
|
| [111] Daragh Walsh made an announcement: <b>Please tick all the subjects you would like to learn about in the form below. Thanks in advance! https://goo.gl/forms/6r3tZjtXlpD31jju1</b>
|
| [128] Daragh Walsh made an announcement: <b>Please tick all the subjects you would like to learn about in the form below. Thanks in advance! https://goo.gl/forms/6r3tZjtXlpD31jju1</b>
|
- Source File : i_academy/application/views/frontend/default/notifications.php
| [21] Daragh Walsh made an announcement: <b>Please tick all the subjects you would like to learn about in the form below. Thanks in advance! https://goo.gl/forms/6r3tZjtXlpD31jju1</b>
|
| [38] Daragh Walsh made an announcement: <b>Please tick all the subjects you would like to learn about in the form below. Thanks in advance! https://goo.gl/forms/6r3tZjtXlpD31jju1</b>
|
| [55] Daragh Walsh made an announcement: <b>Please tick all the subjects you would like to learn about in the form below. Thanks in advance! https://goo.gl/forms/6r3tZjtXlpD31jju1</b>
|
| [72] Daragh Walsh made an announcement: <b>Please tick all the subjects you would like to learn about in the form below. Thanks in advance! https://goo.gl/forms/6r3tZjtXlpD31jju1</b>
|
| [89] Daragh Walsh made an announcement: <b>Please tick all the subjects you would like to learn about in the form below. Thanks in advance! https://goo.gl/forms/6r3tZjtXlpD31jju1</b>
|
| [106] Daragh Walsh made an announcement: <b>Please tick all the subjects you would like to learn about in the form below. Thanks in advance! https://goo.gl/forms/6r3tZjtXlpD31jju1</b>
|
| [123] Daragh Walsh made an announcement: <b>Please tick all the subjects you would like to learn about in the form below. Thanks in advance! https://goo.gl/forms/6r3tZjtXlpD31jju1</b>
|
- Source File : i_academy/application/views/frontend/default/paypal_checkout.php
| [26] <!-- <img src="https://www.paypalobjects.com/webstatic/i/logo/rebrand/ppcom-white.svg" width="25%;" style="opacity: 0.05;"> -->
|
| [28] <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
| [29] <script src="https://www.paypalobjects.com/api/checkout.js"></script>
|
- Source File : i_academy/application/views/frontend/default/request_API_token.php
| [2] <script src="https://www.google.com/recaptcha/api.js" async defer></script>
|
- Source File : i_academy/application/views/frontend/default/reset_password.php
| [2] <script src="https://www.google.com/recaptcha/api.js" async defer></script>
|
- Source File : i_academy/application/views/frontend/default/shopping_cart.php
| [132]<script src="https://www.paypalobjects.com/js/external/dg.js"></script>
|
- Source File : i_academy/application/views/frontend/default/sign_up.php
| [2] <script src="https://www.google.com/recaptcha/api.js" async defer></script>
|
- Source File : i_academy/application/views/frontend/default/sign_up_password.php
| [2] <script src="https://www.google.com/recaptcha/api.js" async defer></script>
|
- Source File : i_academy/application/views/frontend/default/stripe_checkout.php
| [60] <!-- <img src="https://stripe.com/img/about/logos/logos/blue.png" width="25%;" style="opacity: 0.05;" id="payment-gateway-logo"> -->
|
| [61] <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
| [62] <script src="https://js.stripe.com/v3/"></script>
|
- Source File : i_academy/application/views/install/footer.php
| [3] Need help? <a href="http://support.creativeitem.com" target="_blank" style="text-decoration:underline;">Contact support</a>
|
- Source File : i_academy/application/views/install/styles.php
| [2]<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Noto+Sans:400,700,400italic">
|
- Source File : i_academy/application/views/install/main/step2.php
| [42] <a href="https://help.market.envato.com/hc/en-us/articles/202822600-Where-Is-My-Purchase-Code-" target="_blank">
|
- Source File : i_academy/application/views/lessons/course_content_sidebar.php
| [184] <svg class="circular-progress" viewport="0 0 100 100" version="1.1" xmlns="http://www.w3.org/2000/svg" style="height: 180; width: 180;">
|
- Source File : i_academy/application/views/lessons/general_course_content_body.php
| [21] <iframe height="500" src="<?php echo $video_url;?>?origin=https://plyr.io&iv_load_policy=3&modestbranding=1&playsinline=1&showinfo=0&rel=0&enablejsapi=1" allowfullscreen allowtransparency allow="autoplay"></iframe>
|
| [35] <iframe height="500" src="https://player.vimeo.com/video/<?php echo $video_id; ?>?loop=false&byline=false&portrait=false&title=false&speed=true&transparent=0&gesture=media" allowfullscreen allowtransparency allow="autoplay"></iframe>
|
- Source File : i_academy/application/views/lessons/includes_bottom.php
| [10]<script src="https://content.jwplatform.com/libraries/O7BMTay5.js"></script>
|
| [13]<script src="https://cdnjs.cloudflare.com/ajax/libs/nestable2/1.6.0/jquery.nestable.min.js" charset="utf-8"></script>
|
| [14]<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.form/4.2.2/jquery.form.min.js" integrity="sha384-FzT3vTVGXqf7wRfy8k4BiyzvbNfeYjK+frTVqZeNDFl8woCbF0CYG6g2fMEFFo/i" crossorigin="anonymous"></script>
|
- Source File : i_academy/application/views/lessons/includes_top.php
| [14]<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,700" rel="stylesheet">
|
| [16]<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/nestable2/1.6.0/jquery.nestable.min.css" />
|
- Source File : i_academy/application/views/mobile/includes_top.php
| [22]<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-tagsinput/0.8.0/bootstrap-tagsinput.css">
|
| [24]<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> -->
|
| [28]<script src="https://js.stripe.com/v3/"></script>
|
- Source File : i_academy/application/views/mobile/quiz.php
| [5] <img src="https://gifimage.net/wp-content/uploads/2017/08/loading-gif-transparent-25.gif" alt="" height="50" id = "calculating_result">
|
- Source File : i_academy/application/views/mobile/shopping_cart.php
| [103]<script src="https://www.paypalobjects.com/js/external/dg.js"></script>
|
- Source File : i_academy/application/views/payment/includes_bottom.php
| [10]<script src="https://content.jwplatform.com/libraries/O7BMTay5.js"></script>
|
| [13]<script src="https://cdnjs.cloudflare.com/ajax/libs/nestable2/1.6.0/jquery.nestable.min.js" charset="utf-8"></script>
|
| [14]<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.form/4.2.2/jquery.form.min.js" integrity="sha384-FzT3vTVGXqf7wRfy8k4BiyzvbNfeYjK+frTVqZeNDFl8woCbF0CYG6g2fMEFFo/i" crossorigin="anonymous"></script>
|
- Source File : i_academy/application/views/payment/includes_top.php
| [14]<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,700" rel="stylesheet">
|
| [16]<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/nestable2/1.6.0/jquery.nestable.min.css" />
|
| [19]<script src="https://js.stripe.com/v3/"></script>
|
- Source File : i_academy/system/core/Benchmark.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [50] * @link https://codeigniter.com/user_guide/libraries/benchmark.html
|
- Source File : i_academy/system/core/CodeIgniter.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [49] * @link https://codeigniter.com/user_guide/
|
- Source File : i_academy/system/core/Common.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [49] * @link https://codeigniter.com/user_guide/
|
| [87] * @link https://bugs.php.net/bug.php?id=54709
|
| [628] // default error handling. See http://www.php.net/manual/en/errorfunc.constants.php
|
| [680] * @link http://insomanic.me.uk/post/229851073/php-trick-catching-fatal-errors-e-error-with-a
|
| [826] * @link http://www.hardened-php.net/suhosin/
|
- Source File : i_academy/system/core/Config.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [49] * @link https://codeigniter.com/user_guide/libraries/config.html
|
| [107] $base_url = 'http://localhost/';
|
- Source File : i_academy/system/core/Controller.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [50] * @link https://codeigniter.com/user_guide/general/controllers.html
|
- Source File : i_academy/system/core/Exceptions.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/libraries/exceptions.html
|
- Source File : i_academy/system/core/Hooks.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [49] * @link https://codeigniter.com/user_guide/general/hooks.html
|
- Source File : i_academy/system/core/Input.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [49] * @link https://codeigniter.com/user_guide/libraries/input.html
|
| [710] // http://www.ietf.org/rfc/rfc2109.txt
|
- Source File : i_academy/system/core/Lang.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/libraries/language.html
|
- Source File : i_academy/system/core/Loader.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [49] * @link https://codeigniter.com/user_guide/libraries/loader.html
|
- Source File : i_academy/system/core/Log.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/general/errors.html
|
- Source File : i_academy/system/core/Model.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/libraries/config.html
|
| [54] * @link https://github.com/bcit-ci/CodeIgniter/issues/5332
|
- Source File : i_academy/system/core/Output.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [49] * @link https://codeigniter.com/user_guide/libraries/output.html
|
- Source File : i_academy/system/core/Router.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [49] * @link https://codeigniter.com/user_guide/general/routing.html
|
- Source File : i_academy/system/core/Security.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/libraries/security.html
|
| [342] * @link http://channel.bitflux.ch/wiki/XSS_Prevention
|
| [345] * @link http://ha.ckers.org/xss.html
|
| [375] * <a href="http://%77%77%77%2E%67%6F%6F%67%6C%65%2E%63%6F%6D">Google</a>
|
| [548] // See https://github.com/bcit-ci/CodeIgniter/issues/5420
|
| [671] * @link http://php.net/html-entity-decode
|
| [799] * @see https://github.com/bcit-ci/CodeIgniter/issues/4877
|
- Source File : i_academy/system/core/URI.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [49] * @link https://codeigniter.com/user_guide/libraries/uri.html
|
| [206] $uri = parse_url('http://dummy'.$_SERVER['REQUEST_URI']);
|
- Source File : i_academy/system/core/Utf8.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [49] * @link https://codeigniter.com/user_guide/libraries/utf8.html
|
- Source File : i_academy/system/core/compat/hash.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/
|
| [48] * @link http://php.net/hash
|
| [65] * @link http://php.net/hash_equals
|
| [111] * @link http://php.net/hash_pbkdf2
|
- Source File : i_academy/system/core/compat/mbstring.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/
|
| [48] * @link http://php.net/mbstring
|
| [68] * @link http://php.net/mb_strlen
|
| [95] * @link http://php.net/mb_strpos
|
| [124] * @link http://php.net/mb_substr
|
- Source File : i_academy/system/core/compat/password.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/
|
| [48] * @link http://php.net/password
|
| [70] * @link http://php.net/password_get_info
|
| [89] * @link http://php.net/password_hash
|
| [197] * @link http://php.net/password_needs_rehash
|
| [231] * @link http://php.net/password_verify
|
- Source File : i_academy/system/core/compat/standard.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/
|
| [64] * @link http://php.net/array_column
|
| [150] * @link http://php.net/hex2bin
|
- Source File : i_academy/system/database/DB.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [45] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/DB_cache.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [45] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/DB_driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [51] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/DB_forge.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [45] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/DB_query_builder.php
| [32] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [33] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [34] * @license http://opensource.org/licenses/MIT MIT License
|
| [35] * @link https://codeigniter.com
|
| [50] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/DB_result.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [49] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/DB_utility.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [45] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/cubrid/cubrid_driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [51] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/cubrid/cubrid_forge.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [45] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/cubrid/cubrid_result.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/cubrid/cubrid_utility.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [45] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/ibase/ibase_driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [51] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/ibase/ibase_forge.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [45] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/ibase/ibase_result.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/ibase/ibase_utility.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [45] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/mssql/mssql_driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [51] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/mssql/mssql_forge.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/mssql/mssql_result.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [49] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/mssql/mssql_utility.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/mysql/mysql_driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [51] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/mysql/mysql_forge.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [45] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/mysql/mysql_result.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/mysql/mysql_utility.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [45] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/mysqli/mysqli_driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [51] * @link https://codeigniter.com/user_guide/database/
|
| [182] // https://secure.php.net/ChangeLog-5.php#5.6.16
|
| [183] // https://bugs.php.net/bug.php?id=68344
|
- Source File : i_academy/system/database/drivers/mysqli/mysqli_forge.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/mysqli/mysqli_result.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [49] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/mysqli/mysqli_utility.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/oci8/oci8_driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [51] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/oci8/oci8_forge.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [45] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/oci8/oci8_result.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/oci8/oci8_utility.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [45] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/odbc/odbc_driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [51] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/odbc/odbc_forge.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/database/
|
- Source File : i_academy/system/database/drivers/odbc/odbc_result.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [49] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/odbc/odbc_utility.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/database/
|
- Source File : i_academy/system/database/drivers/pdo/pdo_driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [51] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/pdo/pdo_forge.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/database/
|
- Source File : i_academy/system/database/drivers/pdo/pdo_result.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [49] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/pdo/pdo_utility.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/database/
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_4d_driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [51] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_4d_forge.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [45] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_cubrid_driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [51] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_cubrid_forge.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [45] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_dblib_driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [51] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_dblib_forge.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [45] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_firebird_driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [51] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_firebird_forge.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [45] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_ibm_driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [51] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_ibm_forge.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [45] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_informix_driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [51] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_informix_forge.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [45] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_mysql_driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [51] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_mysql_forge.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [45] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_oci_driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [51] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_oci_forge.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [45] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_odbc_driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [51] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_odbc_forge.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [45] * @link https://codeigniter.com/database/
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_pgsql_driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [51] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_pgsql_forge.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [45] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_sqlite_driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [51] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_sqlite_forge.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [45] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_sqlsrv_driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [51] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_sqlsrv_forge.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [45] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/postgre/postgre_driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [51] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/postgre/postgre_forge.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/postgre/postgre_result.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [49] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/postgre/postgre_utility.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/sqlite/sqlite_driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [51] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/sqlite/sqlite_forge.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [45] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/sqlite/sqlite_result.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/sqlite/sqlite_utility.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [45] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/sqlite3/sqlite3_driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [51] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/sqlite3/sqlite3_forge.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [45] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/sqlite3/sqlite3_result.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/sqlite3/sqlite3_utility.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [45] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/sqlsrv/sqlsrv_driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [51] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/sqlsrv/sqlsrv_forge.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [45] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/sqlsrv/sqlsrv_result.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/database/drivers/sqlsrv/sqlsrv_utility.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [45] * @link https://codeigniter.com/user_guide/database/
|
- Source File : i_academy/system/helpers/array_helper.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/helpers/array_helper.html
|
- Source File : i_academy/system/helpers/captcha_helper.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/helpers/captcha_helper.html
|
- Source File : i_academy/system/helpers/cookie_helper.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/helpers/cookie_helper.html
|
- Source File : i_academy/system/helpers/date_helper.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/helpers/date_helper.html
|
| [137] * @link http://www.php.net/manual/en/class.datetime.php#datetime.constants.types
|
- Source File : i_academy/system/helpers/directory_helper.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/helpers/directory_helper.html
|
- Source File : i_academy/system/helpers/download_helper.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/helpers/download_helper.html
|
| [116] * Reference: http://digiblog.de/2011/04/19/android-and-the-download-file-headers/
|
- Source File : i_academy/system/helpers/email_helper.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/helpers/email_helper.html
|
- Source File : i_academy/system/helpers/file_helper.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/helpers/file_helper.html
|
- Source File : i_academy/system/helpers/form_helper.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/helpers/form_helper.html
|
- Source File : i_academy/system/helpers/html_helper.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/helpers/html_helper.html
|
- Source File : i_academy/system/helpers/inflector_helper.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/helpers/inflector_helper.html
|
- Source File : i_academy/system/helpers/language_helper.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/helpers/language_helper.html
|
- Source File : i_academy/system/helpers/number_helper.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/helpers/number_helper.html
|
- Source File : i_academy/system/helpers/path_helper.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/helpers/path_helper.html
|
- Source File : i_academy/system/helpers/security_helper.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/helpers/security_helper.html
|
- Source File : i_academy/system/helpers/smiley_helper.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/helpers/smiley_helper.html
|
- Source File : i_academy/system/helpers/string_helper.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/helpers/string_helper.html
|
| [151] * http://www.some-site.com//index.php
|
| [155] * http://www.some-site.com/index.php
|
- Source File : i_academy/system/helpers/text_helper.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/helpers/text_helper.html
|
- Source File : i_academy/system/helpers/typography_helper.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/helpers/typography_helper.html
|
- Source File : i_academy/system/helpers/url_helper.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/helpers/url_helper.html
|
| [214] // Ref: http://www.w3schools.com/jsref/met_win_open.asp
|
| [411] $a = '<a href="'.(strpos($match[1][0], '/') ? '' : 'http://').$match[0][0].'"'.$target.'>'.$match[0][0].'</a>';
|
| [446] if ($str === 'http://' OR $str === '')
|
| [455] return 'http://'.$str;
|
| [549] ? 303 // reference: http://en.wikipedia.org/wiki/Post/Redirect/Get
|
- Source File : i_academy/system/helpers/xml_helper.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/helpers/xml_helper.html
|
- Source File : i_academy/system/language/english/calendar_lang.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
- Source File : i_academy/system/language/english/date_lang.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
- Source File : i_academy/system/language/english/db_lang.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
- Source File : i_academy/system/language/english/email_lang.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
- Source File : i_academy/system/language/english/form_validation_lang.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
- Source File : i_academy/system/language/english/ftp_lang.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
- Source File : i_academy/system/language/english/imglib_lang.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
- Source File : i_academy/system/language/english/migration_lang.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
- Source File : i_academy/system/language/english/number_lang.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
- Source File : i_academy/system/language/english/pagination_lang.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
- Source File : i_academy/system/language/english/profiler_lang.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
- Source File : i_academy/system/language/english/unit_test_lang.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
- Source File : i_academy/system/language/english/upload_lang.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
- Source File : i_academy/system/libraries/Calendar.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [49] * @link https://codeigniter.com/user_guide/libraries/calendar.html
|
- Source File : i_academy/system/libraries/Cart.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/libraries/cart.html
|
- Source File : i_academy/system/libraries/Driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
- Source File : i_academy/system/libraries/Email.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [49] * @link https://codeigniter.com/user_guide/libraries/email.html
|
| [177] * @link http://www.ietf.org/rfc/rfc822.txt
|
| [191] * @link http://www.ietf.org/rfc/rfc822.txt
|
| [1493] * Refer to RFC 2045 http://www.ietf.org/rfc/rfc2045.txt
|
| [1502] // http://www.ietf.org/rfc/rfc2049.txt
|
| [1849] * @see https://github.com/bcit-ci/CodeIgniter/issues/4963
|
| [1850] * @see https://gist.github.com/Zenexer/40d02da5e07f151adeaeeaa11af9ab36
|
| [1851] * @license https://creativecommons.org/publicdomain/zero/1.0/ CC0 1.0, Public Domain
|
| [2272] // See https://bugs.php.net/bug.php?id=39598 and http://php.net/manual/en/function.fwrite.php#96951
|
| [2334] * @link https://tools.ietf.org/html/rfc5321#section-2.3.5
|
| [2335] * @link http://cbl.abuseat.org/namingproblems.html
|
- Source File : i_academy/system/libraries/Encrypt.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [49] * @link https://codeigniter.com/user_guide/libraries/encryption.html
|
| [201] * For more details, see https://codeigniter.com/user_guide/installation/upgrade_200.html#encryption
|
| [333] * http://www.ciphersbyritter.com/GLOSSARY.HTM#IV
|
- Source File : i_academy/system/libraries/Encryption.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [49] * @link https://codeigniter.com/user_guide/libraries/encryption.html
|
| [842] * @link https://tools.ietf.org/rfc/rfc5869.txt
|
- Source File : i_academy/system/libraries/Form_validation.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/libraries/form_validation.html
|
| [1212] // but it appears that the PR that came in with https://bugs.php.net/bug.php?id=68039
|
| [1213] // was never merged into a PHP 5 branch ... https://3v4l.org/8PsSN
|
| [1219] return (filter_var('http://'.$str, FILTER_VALIDATE_URL) !== FALSE);
|
| [1481] * as defined by RFC 2045 http://www.faqs.org/rfcs/rfc2045
|
| [1533] if ($str === 'http://' OR $str === '')
|
| [1538] if (strpos($str, 'http://') !== 0 && strpos($str, 'https://') !== 0)
|
| [1540] return 'http://'.$str;
|
- Source File : i_academy/system/libraries/Ftp.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/libraries/ftp.html
|
- Source File : i_academy/system/libraries/Image_lib.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/libraries/image_lib.html
|
| [400] * @see https://github.com/bcit-ci/CodeIgniter/issues/4967
|
| [401] * @see https://bugs.php.net/bug.php?id=72404
|
- Source File : i_academy/system/libraries/Javascript.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/libraries/javascript.html
|
| [653] if ($relative === TRUE OR strpos($external_file, 'http://') === 0 OR strpos($external_file, 'https://') === 0)
|
| [657] elseif (strpos($this->_javascript_location, 'http://') !== FALSE)
|
- Source File : i_academy/system/libraries/Migration.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [239] // See https://github.com/bcit-ci/CodeIgniter/issues/4539
|
- Source File : i_academy/system/libraries/Pagination.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/libraries/pagination.html
|
| [689] * @link http://www.w3.org/TR/html5/links.html#linkTypes
|
- Source File : i_academy/system/libraries/Parser.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/libraries/parser.html
|
- Source File : i_academy/system/libraries/Profiler.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [53] * @link https://codeigniter.com/user_guide/general/profiling.html
|
- Source File : i_academy/system/libraries/Table.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [49] * @link https://codeigniter.com/user_guide/libraries/table.html
|
- Source File : i_academy/system/libraries/Trackback.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [49] * @link https://codeigniter.com/user_guide/libraries/trackback.html
|
| [364] * Simply adds "http://" if missing
|
| [375] $url = 'http://'.$url;
|
- Source File : i_academy/system/libraries/Typography.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/libraries/typography.html
|
- Source File : i_academy/system/libraries/Unit_test.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [49] * @link https://codeigniter.com/user_guide/libraries/unit_testing.html
|
- Source File : i_academy/system/libraries/Upload.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/libraries/file_uploading.html
|
| [1186] * @link http://httpd.apache.org/docs/1.3/mod/mod_mime.html#multipleext
|
| [1249] * was reported in issue #750 (https://github.com/EllisLab/CodeIgniter/issues/750) - it's better
|
- Source File : i_academy/system/libraries/User_agent.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [49] * @link https://codeigniter.com/user_guide/libraries/user_agent.html
|
- Source File : i_academy/system/libraries/Xmlrpc.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [54] * @link https://codeigniter.com/user_guide/libraries/xmlrpc.html
|
| [357] $url = 'http://'.$url;
|
| [562] * @link https://codeigniter.com/user_guide/libraries/xmlrpc.html
|
| [660] $url = parse_url('http://'.$server);
|
| [746] // See https://bugs.php.net/bug.php?id=39598 and http://php.net/manual/en/function.fwrite.php#96951
|
| [783] * @link https://codeigniter.com/user_guide/libraries/xmlrpc.html
|
| [1033] * @link https://codeigniter.com/user_guide/libraries/xmlrpc.html
|
| [1652] * @link https://codeigniter.com/user_guide/libraries/xmlrpc.html
|
- Source File : i_academy/system/libraries/Xmlrpcs.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [59] * @link https://codeigniter.com/user_guide/libraries/xmlrpc.html
|
| [166] 'docstring' => 'Combine multiple RPC calls in one request. See http://www.xmlrpc.com/discuss/msgReader$1208 for details')
|
- Source File : i_academy/system/libraries/Zip.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [44] * http://www.zend.com/codex.php?id=696&single=1
|
| [53] * @link https://codeigniter.com/user_guide/libraries/zip.html
|
- Source File : i_academy/system/libraries/Cache/Cache.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
- Source File : i_academy/system/libraries/Cache/drivers/Cache_apc.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
- Source File : i_academy/system/libraries/Cache/drivers/Cache_dummy.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
- Source File : i_academy/system/libraries/Cache/drivers/Cache_file.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
- Source File : i_academy/system/libraries/Cache/drivers/Cache_memcached.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
- Source File : i_academy/system/libraries/Cache/drivers/Cache_redis.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
- Source File : i_academy/system/libraries/Cache/drivers/Cache_wincache.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [44] * http://www.php.net/manual/en/ref.wincache.php
|
- Source File : i_academy/system/libraries/Javascript/Jquery.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/libraries/javascript.html
|
| [792] * @link http://www.malsup.com/jquery/corner/
|
- Source File : i_academy/system/libraries/Session/Session.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/libraries/sessions.html
|
- Source File : i_academy/system/libraries/Session/SessionHandlerInterface.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [49] * @link https://codeigniter.com/user_guide/libraries/sessions.html
|
- Source File : i_academy/system/libraries/Session/Session_driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/libraries/sessions.html
|
| [84] * @see https://wiki.php.net/rfc/session.user.return-value
|
- Source File : i_academy/system/libraries/Session/drivers/Session_database_driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/libraries/sessions.html
|
- Source File : i_academy/system/libraries/Session/drivers/Session_files_driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/libraries/sessions.html
|
| [199] // See https://github.com/bcit-ci/CodeIgniter/issues/4039
|
- Source File : i_academy/system/libraries/Session/drivers/Session_memcached_driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/libraries/sessions.html
|
- Source File : i_academy/system/libraries/Session/drivers/Session_redis_driver.php
| [31] * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
| [32] * @copyright Copyright (c) 2014 - 2018, British Columbia Institute of Technology (http://bcit.ca/)
|
| [33] * @license http://opensource.org/licenses/MIT MIT License
|
| [34] * @link https://codeigniter.com
|
| [47] * @link https://codeigniter.com/user_guide/libraries/sessions.html
|
- Source File : i_academy/uploads/lesson_files/.htaccess
| [3]RewriteCond %{HTTP_REFERER} !^http://(www\.)?localhost [NC]
|
| [5]RewriteCond %{HTTP_REFERER} !^http://(www\.)?localhost.*$ [NC]
|
- Source File : i_academy/uploads/lesson_files/videos/.htaccess
| [3]RewriteCond %{HTTP_REFERER} !^http://(www\.)?localhost [NC]
|
| [5]RewriteCond %{HTTP_REFERER} !^http://(www\.)?localhost.*$ [NC]
|
[+] Keyword Searched : TODO
- Source File : i_academy/application/libraries/Paystack.php
| [434] // TODO: validate params and sentargs against definitions
|
- Source File : i_academy/application/libraries/Stripe/lib/BaseStripeClient.php
| [189] * TODO: replace this with a private constant when we drop support for PHP < 5.
|
- Source File : i_academy/application/libraries/Stripe/lib/Dispute.php
| [71] // TODO: add $params to standardize signature
|
- Source File : i_academy/application/libraries/Stripe/lib/Exception/ExceptionInterface.php
| [5]// TODO: remove this check once we drop support for PHP 5
|
- Source File : i_academy/system/helpers/string_helper.php
| [230] case 'unique': // todo: remove in 3.1+
|
| [233] case 'encrypt': // todo: remove in 3.1+
|
Parsed Paths – Areas of Interest
This section contains a list of file paths that have been identified by matching them with a
predefined set of keywords. These files are typically of interest to a code reviewer, and should be
examined for possible security vulnerabilities or insecure implementations.
[+] Keyword Searched : Security Functionality
- Source File : i_academy/system/core/Security.php
- Source File : i_academy/system/helpers/security_helper.php
[+] Keyword Searched : Permissions
- Source File : i_academy/application/libraries/Stripe/lib/Exception/PermissionException.php
- Source File : i_academy/application/views/backend/admin/admin_permission.php
[+] Keyword Searched : Password
- Source File : i_academy/application/views/backend/admin/password_resets.php
- Source File : i_academy/application/views/frontend/default/reset_password.php
- Source File : i_academy/application/views/frontend/default/sign_up_password.php
- Source File : i_academy/system/core/compat/password.php
[+] Keyword Searched : Libraries | Extensions | Plugins
- Source File : i_academy/application/libraries/Customcacheclass.php
- Source File : i_academy/application/libraries/Format.php
- Source File : i_academy/application/libraries/JWT.php
- Source File : i_academy/application/libraries/Paystack.php
- Source File : i_academy/application/libraries/REST_Controller.php
- Source File : i_academy/application/libraries/TokenHandler.php
- Source File : i_academy/application/libraries/Stripe/build.php
- Source File : i_academy/application/libraries/Stripe/init.php
- Source File : i_academy/application/libraries/Stripe/update_certs.php
- Source File : i_academy/application/libraries/Stripe/phpdoc.dist.xml
- Source File : i_academy/application/libraries/Stripe/lib/Account.php
- Source File : i_academy/application/libraries/Stripe/lib/AccountLink.php
- Source File : i_academy/application/libraries/Stripe/lib/AlipayAccount.php
- Source File : i_academy/application/libraries/Stripe/lib/ApiRequestor.php
- Source File : i_academy/application/libraries/Stripe/lib/ApiResource.php
- Source File : i_academy/application/libraries/Stripe/lib/ApiResponse.php
- Source File : i_academy/application/libraries/Stripe/lib/ApplePayDomain.php
- Source File : i_academy/application/libraries/Stripe/lib/ApplicationFee.php
- Source File : i_academy/application/libraries/Stripe/lib/ApplicationFeeRefund.php
- Source File : i_academy/application/libraries/Stripe/lib/Balance.php
- Source File : i_academy/application/libraries/Stripe/lib/BalanceTransaction.php
- Source File : i_academy/application/libraries/Stripe/lib/BankAccount.php
- Source File : i_academy/application/libraries/Stripe/lib/BaseStripeClient.php
- Source File : i_academy/application/libraries/Stripe/lib/BitcoinReceiver.php
- Source File : i_academy/application/libraries/Stripe/lib/BitcoinTransaction.php
- Source File : i_academy/application/libraries/Stripe/lib/Capability.php
- Source File : i_academy/application/libraries/Stripe/lib/Card.php
- Source File : i_academy/application/libraries/Stripe/lib/Charge.php
- Source File : i_academy/application/libraries/Stripe/lib/Collection.php
- Source File : i_academy/application/libraries/Stripe/lib/CountrySpec.php
- Source File : i_academy/application/libraries/Stripe/lib/Coupon.php
- Source File : i_academy/application/libraries/Stripe/lib/CreditNote.php
- Source File : i_academy/application/libraries/Stripe/lib/CreditNoteLineItem.php
- Source File : i_academy/application/libraries/Stripe/lib/Customer.php
- Source File : i_academy/application/libraries/Stripe/lib/CustomerBalanceTransaction.php
- Source File : i_academy/application/libraries/Stripe/lib/Discount.php
- Source File : i_academy/application/libraries/Stripe/lib/Dispute.php
- Source File : i_academy/application/libraries/Stripe/lib/EphemeralKey.php
- Source File : i_academy/application/libraries/Stripe/lib/ErrorObject.php
- Source File : i_academy/application/libraries/Stripe/lib/Event.php
- Source File : i_academy/application/libraries/Stripe/lib/ExchangeRate.php
- Source File : i_academy/application/libraries/Stripe/lib/File.php
- Source File : i_academy/application/libraries/Stripe/lib/FileLink.php
- Source File : i_academy/application/libraries/Stripe/lib/Invoice.php
- Source File : i_academy/application/libraries/Stripe/lib/InvoiceItem.php
- Source File : i_academy/application/libraries/Stripe/lib/InvoiceLineItem.php
- Source File : i_academy/application/libraries/Stripe/lib/LineItem.php
- Source File : i_academy/application/libraries/Stripe/lib/LoginLink.php
- Source File : i_academy/application/libraries/Stripe/lib/Mandate.php
- Source File : i_academy/application/libraries/Stripe/lib/OAuth.php
- Source File : i_academy/application/libraries/Stripe/lib/OAuthErrorObject.php
- Source File : i_academy/application/libraries/Stripe/lib/Order.php
- Source File : i_academy/application/libraries/Stripe/lib/OrderItem.php
- Source File : i_academy/application/libraries/Stripe/lib/OrderReturn.php
- Source File : i_academy/application/libraries/Stripe/lib/PaymentIntent.php
- Source File : i_academy/application/libraries/Stripe/lib/PaymentMethod.php
- Source File : i_academy/application/libraries/Stripe/lib/Payout.php
- Source File : i_academy/application/libraries/Stripe/lib/Person.php
- Source File : i_academy/application/libraries/Stripe/lib/Plan.php
- Source File : i_academy/application/libraries/Stripe/lib/Price.php
- Source File : i_academy/application/libraries/Stripe/lib/Product.php
- Source File : i_academy/application/libraries/Stripe/lib/Recipient.php
- Source File : i_academy/application/libraries/Stripe/lib/RecipientTransfer.php
- Source File : i_academy/application/libraries/Stripe/lib/Refund.php
- Source File : i_academy/application/libraries/Stripe/lib/RequestTelemetry.php
- Source File : i_academy/application/libraries/Stripe/lib/Review.php
- Source File : i_academy/application/libraries/Stripe/lib/SetupIntent.php
- Source File : i_academy/application/libraries/Stripe/lib/SingletonApiResource.php
- Source File : i_academy/application/libraries/Stripe/lib/SKU.php
- Source File : i_academy/application/libraries/Stripe/lib/Source.php
- Source File : i_academy/application/libraries/Stripe/lib/SourceTransaction.php
- Source File : i_academy/application/libraries/Stripe/lib/Stripe.php
- Source File : i_academy/application/libraries/Stripe/lib/StripeClient.php
- Source File : i_academy/application/libraries/Stripe/lib/StripeClientInterface.php
- Source File : i_academy/application/libraries/Stripe/lib/StripeObject.php
- Source File : i_academy/application/libraries/Stripe/lib/Subscription.php
- Source File : i_academy/application/libraries/Stripe/lib/SubscriptionItem.php
- Source File : i_academy/application/libraries/Stripe/lib/SubscriptionSchedule.php
- Source File : i_academy/application/libraries/Stripe/lib/TaxId.php
- Source File : i_academy/application/libraries/Stripe/lib/TaxRate.php
- Source File : i_academy/application/libraries/Stripe/lib/ThreeDSecure.php
- Source File : i_academy/application/libraries/Stripe/lib/Token.php
- Source File : i_academy/application/libraries/Stripe/lib/Topup.php
- Source File : i_academy/application/libraries/Stripe/lib/Transfer.php
- Source File : i_academy/application/libraries/Stripe/lib/TransferReversal.php
- Source File : i_academy/application/libraries/Stripe/lib/UsageRecord.php
- Source File : i_academy/application/libraries/Stripe/lib/UsageRecordSummary.php
- Source File : i_academy/application/libraries/Stripe/lib/Webhook.php
- Source File : i_academy/application/libraries/Stripe/lib/WebhookEndpoint.php
- Source File : i_academy/application/libraries/Stripe/lib/WebhookSignature.php
- Source File : i_academy/application/libraries/Stripe/lib/ApiOperations/All.php
- Source File : i_academy/application/libraries/Stripe/lib/ApiOperations/Create.php
- Source File : i_academy/application/libraries/Stripe/lib/ApiOperations/Delete.php
- Source File : i_academy/application/libraries/Stripe/lib/ApiOperations/NestedResource.php
- Source File : i_academy/application/libraries/Stripe/lib/ApiOperations/Request.php
- Source File : i_academy/application/libraries/Stripe/lib/ApiOperations/Retrieve.php
- Source File : i_academy/application/libraries/Stripe/lib/ApiOperations/Update.php
- Source File : i_academy/application/libraries/Stripe/lib/BillingPortal/Session.php
- Source File : i_academy/application/libraries/Stripe/lib/Checkout/Session.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/ApiConnectionException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/ApiErrorException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/AuthenticationException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/BadMethodCallException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/CardException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/ExceptionInterface.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/IdempotencyException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/InvalidArgumentException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/InvalidRequestException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/PermissionException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/RateLimitException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/SignatureVerificationException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/UnexpectedValueException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/UnknownApiErrorException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/ExceptionInterface.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/InvalidClientException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/InvalidGrantException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/InvalidRequestException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/InvalidScopeException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/OAuthErrorException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/UnknownOAuthErrorException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/UnsupportedGrantTypeException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/UnsupportedResponseTypeException.php
- Source File : i_academy/application/libraries/Stripe/lib/HttpClient/ClientInterface.php
- Source File : i_academy/application/libraries/Stripe/lib/HttpClient/CurlClient.php
- Source File : i_academy/application/libraries/Stripe/lib/Issuing/Authorization.php
- Source File : i_academy/application/libraries/Stripe/lib/Issuing/Card.php
- Source File : i_academy/application/libraries/Stripe/lib/Issuing/CardDetails.php
- Source File : i_academy/application/libraries/Stripe/lib/Issuing/Cardholder.php
- Source File : i_academy/application/libraries/Stripe/lib/Issuing/Dispute.php
- Source File : i_academy/application/libraries/Stripe/lib/Issuing/Transaction.php
- Source File : i_academy/application/libraries/Stripe/lib/Radar/EarlyFraudWarning.php
- Source File : i_academy/application/libraries/Stripe/lib/Radar/ValueList.php
- Source File : i_academy/application/libraries/Stripe/lib/Radar/ValueListItem.php
- Source File : i_academy/application/libraries/Stripe/lib/Reporting/ReportRun.php
- Source File : i_academy/application/libraries/Stripe/lib/Reporting/ReportType.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/AbstractService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/AbstractServiceFactory.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/AccountLinkService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/AccountService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/ApplePayDomainService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/ApplicationFeeService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/BalanceService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/BalanceTransactionService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/ChargeService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/CoreServiceFactory.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/CountrySpecService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/CouponService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/CreditNoteService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/CustomerService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/DisputeService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/EphemeralKeyService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/EventService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/ExchangeRateService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/FileLinkService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/FileService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/InvoiceItemService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/InvoiceService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/MandateService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/OrderReturnService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/OrderService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/PaymentIntentService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/PaymentMethodService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/PayoutService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/PlanService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/PriceService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/ProductService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/RefundService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/ReviewService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/SetupIntentService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/SkuService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/SourceService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/SubscriptionItemService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/SubscriptionScheduleService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/SubscriptionService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/TaxRateService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/TokenService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/TopupService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/TransferService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/WebhookEndpointService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/BillingPortal/BillingPortalServiceFactory.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/BillingPortal/SessionService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Checkout/CheckoutServiceFactory.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Checkout/SessionService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Issuing/AuthorizationService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Issuing/CardholderService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Issuing/CardService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Issuing/DisputeService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Issuing/IssuingServiceFactory.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Issuing/TransactionService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Radar/EarlyFraudWarningService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Radar/RadarServiceFactory.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Radar/ValueListItemService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Radar/ValueListService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Reporting/ReportingServiceFactory.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Reporting/ReportRunService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Reporting/ReportTypeService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Sigma/ScheduledQueryRunService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Sigma/SigmaServiceFactory.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Terminal/ConnectionTokenService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Terminal/LocationService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Terminal/ReaderService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Terminal/TerminalServiceFactory.php
- Source File : i_academy/application/libraries/Stripe/lib/Sigma/ScheduledQueryRun.php
- Source File : i_academy/application/libraries/Stripe/lib/Terminal/ConnectionToken.php
- Source File : i_academy/application/libraries/Stripe/lib/Terminal/Location.php
- Source File : i_academy/application/libraries/Stripe/lib/Terminal/Reader.php
- Source File : i_academy/application/libraries/Stripe/lib/Util/CaseInsensitiveArray.php
- Source File : i_academy/application/libraries/Stripe/lib/Util/DefaultLogger.php
- Source File : i_academy/application/libraries/Stripe/lib/Util/LoggerInterface.php
- Source File : i_academy/application/libraries/Stripe/lib/Util/ObjectTypes.php
- Source File : i_academy/application/libraries/Stripe/lib/Util/RandomGenerator.php
- Source File : i_academy/application/libraries/Stripe/lib/Util/RequestOptions.php
- Source File : i_academy/application/libraries/Stripe/lib/Util/Set.php
- Source File : i_academy/application/libraries/Stripe/lib/Util/Util.php
- Source File : i_academy/system/libraries/Calendar.php
- Source File : i_academy/system/libraries/Cart.php
- Source File : i_academy/system/libraries/Driver.php
- Source File : i_academy/system/libraries/Email.php
- Source File : i_academy/system/libraries/Encrypt.php
- Source File : i_academy/system/libraries/Encryption.php
- Source File : i_academy/system/libraries/Form_validation.php
- Source File : i_academy/system/libraries/Ftp.php
- Source File : i_academy/system/libraries/Image_lib.php
- Source File : i_academy/system/libraries/Javascript.php
- Source File : i_academy/system/libraries/Migration.php
- Source File : i_academy/system/libraries/Pagination.php
- Source File : i_academy/system/libraries/Parser.php
- Source File : i_academy/system/libraries/Profiler.php
- Source File : i_academy/system/libraries/Table.php
- Source File : i_academy/system/libraries/Trackback.php
- Source File : i_academy/system/libraries/Typography.php
- Source File : i_academy/system/libraries/Unit_test.php
- Source File : i_academy/system/libraries/Upload.php
- Source File : i_academy/system/libraries/User_agent.php
- Source File : i_academy/system/libraries/Xmlrpc.php
- Source File : i_academy/system/libraries/Xmlrpcs.php
- Source File : i_academy/system/libraries/Zip.php
- Source File : i_academy/system/libraries/Cache/Cache.php
- Source File : i_academy/system/libraries/Cache/drivers/Cache_apc.php
- Source File : i_academy/system/libraries/Cache/drivers/Cache_dummy.php
- Source File : i_academy/system/libraries/Cache/drivers/Cache_file.php
- Source File : i_academy/system/libraries/Cache/drivers/Cache_memcached.php
- Source File : i_academy/system/libraries/Cache/drivers/Cache_redis.php
- Source File : i_academy/system/libraries/Cache/drivers/Cache_wincache.php
- Source File : i_academy/system/libraries/Javascript/Jquery.php
- Source File : i_academy/system/libraries/Session/Session.php
- Source File : i_academy/system/libraries/Session/SessionHandlerInterface.php
- Source File : i_academy/system/libraries/Session/Session_driver.php
- Source File : i_academy/system/libraries/Session/drivers/Session_database_driver.php
- Source File : i_academy/system/libraries/Session/drivers/Session_files_driver.php
- Source File : i_academy/system/libraries/Session/drivers/Session_memcached_driver.php
- Source File : i_academy/system/libraries/Session/drivers/Session_redis_driver.php
[+] Keyword Searched : Misc Modules (CAPTCHA|Login|Authentication|Authenticated|Oauth|JWT)
- Source File : i_academy/application/controllers/Login.php
- Source File : i_academy/application/libraries/JWT.php
- Source File : i_academy/application/libraries/Stripe/lib/LoginLink.php
- Source File : i_academy/application/libraries/Stripe/lib/OAuth.php
- Source File : i_academy/application/libraries/Stripe/lib/OAuthErrorObject.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/AuthenticationException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/ExceptionInterface.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/InvalidClientException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/InvalidGrantException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/InvalidRequestException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/InvalidScopeException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/OAuthErrorException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/UnknownOAuthErrorException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/UnsupportedGrantTypeException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/UnsupportedResponseTypeException.php
- Source File : i_academy/application/models/Jwt_model.php
- Source File : i_academy/application/views/frontend/default/admin_login.php
- Source File : i_academy/application/views/frontend/default/login.php
- Source File : i_academy/system/helpers/captcha_helper.php
[+] Keyword Searched : Admin Section/Areas
- Source File : i_academy/application/controllers/Admin.php
- Source File : i_academy/application/views/backend/admin/about.php
- Source File : i_academy/application/views/backend/admin/about_this_addon.php
- Source File : i_academy/application/views/backend/admin/active_courses.php
- Source File : i_academy/application/views/backend/admin/addons.php
- Source File : i_academy/application/views/backend/admin/addon_add.php
- Source File : i_academy/application/views/backend/admin/addon_update.php
- Source File : i_academy/application/views/backend/admin/admins.php
- Source File : i_academy/application/views/backend/admin/admin_add.php
- Source File : i_academy/application/views/backend/admin/admin_edit.php
- Source File : i_academy/application/views/backend/admin/admin_permission.php
- Source File : i_academy/application/views/backend/admin/admin_revenue.php
- Source File : i_academy/application/views/backend/admin/ajax_get_section.php
- Source File : i_academy/application/views/backend/admin/ajax_get_sub_category.php
- Source File : i_academy/application/views/backend/admin/application_details.php
- Source File : i_academy/application/views/backend/admin/application_list.php
- Source File : i_academy/application/views/backend/admin/available_addon.php
- Source File : i_academy/application/views/backend/admin/categories.php
- Source File : i_academy/application/views/backend/admin/category_add.php
- Source File : i_academy/application/views/backend/admin/category_edit.php
- Source File : i_academy/application/views/backend/admin/coupons.php
- Source File : i_academy/application/views/backend/admin/coupon_add.php
- Source File : i_academy/application/views/backend/admin/coupon_edit.php
- Source File : i_academy/application/views/backend/admin/courses-server-side.php
- Source File : i_academy/application/views/backend/admin/courses.php
- Source File : i_academy/application/views/backend/admin/course_add.php
- Source File : i_academy/application/views/backend/admin/course_add_shortcut.php
- Source File : i_academy/application/views/backend/admin/course_details.php
- Source File : i_academy/application/views/backend/admin/course_edit.php
- Source File : i_academy/application/views/backend/admin/course_media_add.php
- Source File : i_academy/application/views/backend/admin/course_media_edit.php
- Source File : i_academy/application/views/backend/admin/curriculum.php
- Source File : i_academy/application/views/backend/admin/dashboard-chart.php
- Source File : i_academy/application/views/backend/admin/dashboard.php
- Source File : i_academy/application/views/backend/admin/document_type_lesson_add.php
- Source File : i_academy/application/views/backend/admin/document_type_lesson_edit.php
- Source File : i_academy/application/views/backend/admin/dragula.php
- Source File : i_academy/application/views/backend/admin/enrol_history.php
- Source File : i_academy/application/views/backend/admin/enrol_student.php
- Source File : i_academy/application/views/backend/admin/frontend_settings.php
- Source File : i_academy/application/views/backend/admin/html5_type_lesson_add.php
- Source File : i_academy/application/views/backend/admin/html5_type_lesson_edit.php
- Source File : i_academy/application/views/backend/admin/iframe_type_lesson_add.php
- Source File : i_academy/application/views/backend/admin/iframe_type_lesson_edit.php
- Source File : i_academy/application/views/backend/admin/image_type_lesson_add.php
- Source File : i_academy/application/views/backend/admin/image_type_lesson_edit.php
- Source File : i_academy/application/views/backend/admin/instructors.php
- Source File : i_academy/application/views/backend/admin/instructor_add.php
- Source File : i_academy/application/views/backend/admin/instructor_edit.php
- Source File : i_academy/application/views/backend/admin/instructor_payout.php
- Source File : i_academy/application/views/backend/admin/instructor_revenue.php
- Source File : i_academy/application/views/backend/admin/instructor_settings.php
- Source File : i_academy/application/views/backend/admin/invoice.php
- Source File : i_academy/application/views/backend/admin/lesson_add.php
- Source File : i_academy/application/views/backend/admin/lesson_edit.php
- Source File : i_academy/application/views/backend/admin/lesson_types.php
- Source File : i_academy/application/views/backend/admin/logs.php
- Source File : i_academy/application/views/backend/admin/mail_on_course_status_changing_modal.php
- Source File : i_academy/application/views/backend/admin/manage_language.php
- Source File : i_academy/application/views/backend/admin/manage_multiple_choices_options.php
- Source File : i_academy/application/views/backend/admin/manage_profile.php
- Source File : i_academy/application/views/backend/admin/message.php
- Source File : i_academy/application/views/backend/admin/message_home.php
- Source File : i_academy/application/views/backend/admin/message_new.php
- Source File : i_academy/application/views/backend/admin/message_read.php
- Source File : i_academy/application/views/backend/admin/navigation.php
- Source File : i_academy/application/views/backend/admin/password_resets.php
- Source File : i_academy/application/views/backend/admin/payment_settings.php
- Source File : i_academy/application/views/backend/admin/paypal_checkout_for_instructor_revenue.php
- Source File : i_academy/application/views/backend/admin/pending_courses.php
- Source File : i_academy/application/views/backend/admin/purchase_history.php
- Source File : i_academy/application/views/backend/admin/question_add.php
- Source File : i_academy/application/views/backend/admin/question_edit.php
- Source File : i_academy/application/views/backend/admin/quiz_add.php
- Source File : i_academy/application/views/backend/admin/quiz_edit.php
- Source File : i_academy/application/views/backend/admin/quiz_questions.php
- Source File : i_academy/application/views/backend/admin/section_add.php
- Source File : i_academy/application/views/backend/admin/section_edit.php
- Source File : i_academy/application/views/backend/admin/shortcut_add_student.php
- Source File : i_academy/application/views/backend/admin/shortcut_enrol_student.php
- Source File : i_academy/application/views/backend/admin/smtp_settings.php
- Source File : i_academy/application/views/backend/admin/sort_lesson.php
- Source File : i_academy/application/views/backend/admin/sort_section.php
- Source File : i_academy/application/views/backend/admin/stripe_checkout_for_instructor_revenue.php
- Source File : i_academy/application/views/backend/admin/stripe_payment_gateway_form.php
- Source File : i_academy/application/views/backend/admin/sub_categories.php
- Source File : i_academy/application/views/backend/admin/sub_category_add.php
- Source File : i_academy/application/views/backend/admin/sub_category_edit.php
- Source File : i_academy/application/views/backend/admin/system_settings.php
- Source File : i_academy/application/views/backend/admin/theme_settings.php
- Source File : i_academy/application/views/backend/admin/transaction.php
- Source File : i_academy/application/views/backend/admin/users.php
- Source File : i_academy/application/views/backend/admin/user_add.php
- Source File : i_academy/application/views/backend/admin/user_edit.php
- Source File : i_academy/application/views/backend/admin/video_player.php
- Source File : i_academy/application/views/backend/admin/video_type_lesson_add.php
- Source File : i_academy/application/views/backend/admin/video_type_lesson_edit.php
- Source File : i_academy/application/views/backend/admin/vimeo_type_lesson_add.php
- Source File : i_academy/application/views/backend/admin/vimeo_type_lesson_edit.php
- Source File : i_academy/application/views/backend/admin/youtube_type_lesson_add.php
- Source File : i_academy/application/views/backend/admin/youtube_type_lesson_edit.php
- Source File : i_academy/application/views/frontend/default/admin_login.php
[+] Keyword Searched : File Upload
- Source File : i_academy/system/language/english/upload_lang.php
- Source File : i_academy/system/libraries/Upload.php
- Source File : i_academy/uploads/lesson_files/.htaccess
- Source File : i_academy/uploads/lesson_files/videos/.htaccess
[+] Keyword Searched : Login/SignIn
- Source File : i_academy/application/controllers/Login.php
- Source File : i_academy/application/libraries/Stripe/lib/LoginLink.php
- Source File : i_academy/application/views/frontend/default/admin_login.php
- Source File : i_academy/application/views/frontend/default/login.php
[+] Keyword Searched : API
- Source File : i_academy/application/controllers/Api.php
- Source File : i_academy/application/controllers/Api_instructor.php
- Source File : i_academy/application/libraries/Stripe/lib/ApiRequestor.php
- Source File : i_academy/application/libraries/Stripe/lib/ApiResource.php
- Source File : i_academy/application/libraries/Stripe/lib/ApiResponse.php
- Source File : i_academy/application/libraries/Stripe/lib/SingletonApiResource.php
- Source File : i_academy/application/libraries/Stripe/lib/ApiOperations/All.php
- Source File : i_academy/application/libraries/Stripe/lib/ApiOperations/Create.php
- Source File : i_academy/application/libraries/Stripe/lib/ApiOperations/Delete.php
- Source File : i_academy/application/libraries/Stripe/lib/ApiOperations/NestedResource.php
- Source File : i_academy/application/libraries/Stripe/lib/ApiOperations/Request.php
- Source File : i_academy/application/libraries/Stripe/lib/ApiOperations/Retrieve.php
- Source File : i_academy/application/libraries/Stripe/lib/ApiOperations/Update.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/ApiConnectionException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/ApiErrorException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/UnknownApiErrorException.php
- Source File : i_academy/application/models/Api_instructor_model.php
- Source File : i_academy/application/models/Api_model.php
- Source File : i_academy/application/views/frontend/default/request_API_token.php
[+] Keyword Searched : User Section
- Source File : i_academy/application/config/user_agents.php
- Source File : i_academy/application/controllers/User.php
- Source File : i_academy/application/helpers/user_helper.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/SkuService.php
- Source File : i_academy/application/models/User_model.php
- Source File : i_academy/application/views/backend/admin/users.php
- Source File : i_academy/application/views/backend/admin/user_add.php
- Source File : i_academy/application/views/backend/admin/user_edit.php
- Source File : i_academy/application/views/backend/user/application_details.php
- Source File : i_academy/application/views/backend/user/application_form.php
- Source File : i_academy/application/views/backend/user/application_list.php
- Source File : i_academy/application/views/backend/user/become_an_instructor.php
- Source File : i_academy/application/views/backend/user/courses-server-side.php
- Source File : i_academy/application/views/backend/user/courses.php
- Source File : i_academy/application/views/backend/user/course_add.php
- Source File : i_academy/application/views/backend/user/course_add_shortcut.php
- Source File : i_academy/application/views/backend/user/course_edit.php
- Source File : i_academy/application/views/backend/user/course_media_add.php
- Source File : i_academy/application/views/backend/user/course_media_edit.php
- Source File : i_academy/application/views/backend/user/curriculum.php
- Source File : i_academy/application/views/backend/user/dashboard-chart.php
- Source File : i_academy/application/views/backend/user/dashboard.php
- Source File : i_academy/application/views/backend/user/document_type_lesson_add.php
- Source File : i_academy/application/views/backend/user/document_type_lesson_edit.php
- Source File : i_academy/application/views/backend/user/html5_type_lesson_add.php
- Source File : i_academy/application/views/backend/user/html5_type_lesson_edit.php
- Source File : i_academy/application/views/backend/user/iframe_type_lesson_add.php
- Source File : i_academy/application/views/backend/user/iframe_type_lesson_edit.php
- Source File : i_academy/application/views/backend/user/image_type_lesson_add.php
- Source File : i_academy/application/views/backend/user/image_type_lesson_edit.php
- Source File : i_academy/application/views/backend/user/instructor_revenue.php
- Source File : i_academy/application/views/backend/user/invoice.php
- Source File : i_academy/application/views/backend/user/lesson_add.php
- Source File : i_academy/application/views/backend/user/lesson_edit.php
- Source File : i_academy/application/views/backend/user/lesson_types.php
- Source File : i_academy/application/views/backend/user/manage_multiple_choices_options.php
- Source File : i_academy/application/views/backend/user/navigation.php
- Source File : i_academy/application/views/backend/user/payment_settings.php
- Source File : i_academy/application/views/backend/user/payout_report.php
- Source File : i_academy/application/views/backend/user/question_add.php
- Source File : i_academy/application/views/backend/user/question_edit.php
- Source File : i_academy/application/views/backend/user/quiz_add.php
- Source File : i_academy/application/views/backend/user/quiz_edit.php
- Source File : i_academy/application/views/backend/user/quiz_questions.php
- Source File : i_academy/application/views/backend/user/request_withdrawal.php
- Source File : i_academy/application/views/backend/user/sales_report.php
- Source File : i_academy/application/views/backend/user/section_add.php
- Source File : i_academy/application/views/backend/user/section_edit.php
- Source File : i_academy/application/views/backend/user/sort_lesson.php
- Source File : i_academy/application/views/backend/user/sort_section.php
- Source File : i_academy/application/views/backend/user/users.php
- Source File : i_academy/application/views/backend/user/user_add.php
- Source File : i_academy/application/views/backend/user/user_edit.php
- Source File : i_academy/application/views/backend/user/video_type_lesson_add.php
- Source File : i_academy/application/views/backend/user/video_type_lesson_edit.php
- Source File : i_academy/application/views/backend/user/vimeo_type_lesson_add.php
- Source File : i_academy/application/views/backend/user/vimeo_type_lesson_edit.php
- Source File : i_academy/application/views/backend/user/youtube_type_lesson_add.php
- Source File : i_academy/application/views/backend/user/youtube_type_lesson_edit.php
- Source File : i_academy/application/views/frontend/default/update_user_photo.php
- Source File : i_academy/application/views/frontend/default/users.php
- Source File : i_academy/application/views/frontend/default/user_credentials.php
- Source File : i_academy/application/views/frontend/default/user_profile.php
- Source File : i_academy/system/libraries/User_agent.php
[+] Keyword Searched : Payment Functionality
- Source File : i_academy/application/libraries/Paystack.php
- Source File : i_academy/application/libraries/Stripe/lib/AlipayAccount.php
- Source File : i_academy/application/libraries/Stripe/lib/ApplePayDomain.php
- Source File : i_academy/application/libraries/Stripe/lib/PaymentIntent.php
- Source File : i_academy/application/libraries/Stripe/lib/PaymentMethod.php
- Source File : i_academy/application/libraries/Stripe/lib/Payout.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/ApplePayDomainService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/PaymentIntentService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/PaymentMethodService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/PayoutService.php
- Source File : i_academy/application/models/Payment_model.php
- Source File : i_academy/application/views/backend/admin/instructor_payout.php
- Source File : i_academy/application/views/backend/admin/payment_settings.php
- Source File : i_academy/application/views/backend/admin/paypal_checkout_for_instructor_revenue.php
- Source File : i_academy/application/views/backend/admin/stripe_payment_gateway_form.php
- Source File : i_academy/application/views/backend/user/payment_settings.php
- Source File : i_academy/application/views/backend/user/payout_report.php
- Source File : i_academy/application/views/frontend/default/payment_report.php
- Source File : i_academy/application/views/frontend/default/payment_settings.php
- Source File : i_academy/application/views/frontend/default/paypal_checkout.php
- Source File : i_academy/application/views/mobile/payment_gateway.php
- Source File : i_academy/application/views/mobile/payment_model.php
- Source File : i_academy/application/views/mobile/stripe/stripe_payment_gateway_form.php
- Source File : i_academy/application/views/payment/eu-cookie.php
- Source File : i_academy/application/views/payment/includes_bottom.php
- Source File : i_academy/application/views/payment/includes_top.php
- Source File : i_academy/application/views/payment/index.php
- Source File : i_academy/application/views/payment/payment_gateway.php
- Source File : i_academy/application/views/payment/stripe/stripe_checkout.php
- Source File : i_academy/application/views/payment/stripe/stripe_payment_gateway_form.php
[+] Keyword Searched : Purchases | Ordering
- Source File : i_academy/application/libraries/Stripe/lib/Order.php
- Source File : i_academy/application/libraries/Stripe/lib/OrderItem.php
- Source File : i_academy/application/libraries/Stripe/lib/OrderReturn.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/OrderReturnService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/OrderService.php
- Source File : i_academy/application/views/backend/admin/purchase_history.php
- Source File : i_academy/application/views/frontend/default/cart_items.php
- Source File : i_academy/application/views/frontend/default/purchase_history.php
- Source File : i_academy/application/views/frontend/default/shopping_cart.php
- Source File : i_academy/application/views/frontend/default/shopping_cart_inner_view.php
- Source File : i_academy/application/views/mobile/shopping_cart.php
- Source File : i_academy/system/libraries/Cart.php
[+] Keyword Searched : Models
- Source File : i_academy/application/models/Addon_model.php
- Source File : i_academy/application/models/Api_instructor_model.php
- Source File : i_academy/application/models/Api_model.php
- Source File : i_academy/application/models/Crud_model.php
- Source File : i_academy/application/models/Email_model.php
- Source File : i_academy/application/models/Jwt_model.php
- Source File : i_academy/application/models/Lazyloaddata_model.php
- Source File : i_academy/application/models/Payment_model.php
- Source File : i_academy/application/models/User_model.php
- Source File : i_academy/application/models/Video_model.php
[+] Keyword Searched : Views
- Source File : i_academy/application/views/backend/common_scripts.php
- Source File : i_academy/application/views/backend/footer.php
- Source File : i_academy/application/views/backend/header.php
- Source File : i_academy/application/views/backend/includes_bottom.php
- Source File : i_academy/application/views/backend/includes_top.php
- Source File : i_academy/application/views/backend/index.php
- Source File : i_academy/application/views/backend/metas.php
- Source File : i_academy/application/views/backend/modal.php
- Source File : i_academy/application/views/backend/admin/about.php
- Source File : i_academy/application/views/backend/admin/about_this_addon.php
- Source File : i_academy/application/views/backend/admin/active_courses.php
- Source File : i_academy/application/views/backend/admin/addons.php
- Source File : i_academy/application/views/backend/admin/addon_add.php
- Source File : i_academy/application/views/backend/admin/addon_update.php
- Source File : i_academy/application/views/backend/admin/admins.php
- Source File : i_academy/application/views/backend/admin/admin_add.php
- Source File : i_academy/application/views/backend/admin/admin_edit.php
- Source File : i_academy/application/views/backend/admin/admin_permission.php
- Source File : i_academy/application/views/backend/admin/admin_revenue.php
- Source File : i_academy/application/views/backend/admin/ajax_get_section.php
- Source File : i_academy/application/views/backend/admin/ajax_get_sub_category.php
- Source File : i_academy/application/views/backend/admin/application_details.php
- Source File : i_academy/application/views/backend/admin/application_list.php
- Source File : i_academy/application/views/backend/admin/available_addon.php
- Source File : i_academy/application/views/backend/admin/categories.php
- Source File : i_academy/application/views/backend/admin/category_add.php
- Source File : i_academy/application/views/backend/admin/category_edit.php
- Source File : i_academy/application/views/backend/admin/coupons.php
- Source File : i_academy/application/views/backend/admin/coupon_add.php
- Source File : i_academy/application/views/backend/admin/coupon_edit.php
- Source File : i_academy/application/views/backend/admin/courses-server-side.php
- Source File : i_academy/application/views/backend/admin/courses.php
- Source File : i_academy/application/views/backend/admin/course_add.php
- Source File : i_academy/application/views/backend/admin/course_add_shortcut.php
- Source File : i_academy/application/views/backend/admin/course_details.php
- Source File : i_academy/application/views/backend/admin/course_edit.php
- Source File : i_academy/application/views/backend/admin/course_media_add.php
- Source File : i_academy/application/views/backend/admin/course_media_edit.php
- Source File : i_academy/application/views/backend/admin/curriculum.php
- Source File : i_academy/application/views/backend/admin/dashboard-chart.php
- Source File : i_academy/application/views/backend/admin/dashboard.php
- Source File : i_academy/application/views/backend/admin/document_type_lesson_add.php
- Source File : i_academy/application/views/backend/admin/document_type_lesson_edit.php
- Source File : i_academy/application/views/backend/admin/dragula.php
- Source File : i_academy/application/views/backend/admin/enrol_history.php
- Source File : i_academy/application/views/backend/admin/enrol_student.php
- Source File : i_academy/application/views/backend/admin/frontend_settings.php
- Source File : i_academy/application/views/backend/admin/html5_type_lesson_add.php
- Source File : i_academy/application/views/backend/admin/html5_type_lesson_edit.php
- Source File : i_academy/application/views/backend/admin/iframe_type_lesson_add.php
- Source File : i_academy/application/views/backend/admin/iframe_type_lesson_edit.php
- Source File : i_academy/application/views/backend/admin/image_type_lesson_add.php
- Source File : i_academy/application/views/backend/admin/image_type_lesson_edit.php
- Source File : i_academy/application/views/backend/admin/instructors.php
- Source File : i_academy/application/views/backend/admin/instructor_add.php
- Source File : i_academy/application/views/backend/admin/instructor_edit.php
- Source File : i_academy/application/views/backend/admin/instructor_payout.php
- Source File : i_academy/application/views/backend/admin/instructor_revenue.php
- Source File : i_academy/application/views/backend/admin/instructor_settings.php
- Source File : i_academy/application/views/backend/admin/invoice.php
- Source File : i_academy/application/views/backend/admin/lesson_add.php
- Source File : i_academy/application/views/backend/admin/lesson_edit.php
- Source File : i_academy/application/views/backend/admin/lesson_types.php
- Source File : i_academy/application/views/backend/admin/logs.php
- Source File : i_academy/application/views/backend/admin/mail_on_course_status_changing_modal.php
- Source File : i_academy/application/views/backend/admin/manage_language.php
- Source File : i_academy/application/views/backend/admin/manage_multiple_choices_options.php
- Source File : i_academy/application/views/backend/admin/manage_profile.php
- Source File : i_academy/application/views/backend/admin/message.php
- Source File : i_academy/application/views/backend/admin/message_home.php
- Source File : i_academy/application/views/backend/admin/message_new.php
- Source File : i_academy/application/views/backend/admin/message_read.php
- Source File : i_academy/application/views/backend/admin/navigation.php
- Source File : i_academy/application/views/backend/admin/password_resets.php
- Source File : i_academy/application/views/backend/admin/payment_settings.php
- Source File : i_academy/application/views/backend/admin/paypal_checkout_for_instructor_revenue.php
- Source File : i_academy/application/views/backend/admin/pending_courses.php
- Source File : i_academy/application/views/backend/admin/purchase_history.php
- Source File : i_academy/application/views/backend/admin/question_add.php
- Source File : i_academy/application/views/backend/admin/question_edit.php
- Source File : i_academy/application/views/backend/admin/quiz_add.php
- Source File : i_academy/application/views/backend/admin/quiz_edit.php
- Source File : i_academy/application/views/backend/admin/quiz_questions.php
- Source File : i_academy/application/views/backend/admin/section_add.php
- Source File : i_academy/application/views/backend/admin/section_edit.php
- Source File : i_academy/application/views/backend/admin/shortcut_add_student.php
- Source File : i_academy/application/views/backend/admin/shortcut_enrol_student.php
- Source File : i_academy/application/views/backend/admin/smtp_settings.php
- Source File : i_academy/application/views/backend/admin/sort_lesson.php
- Source File : i_academy/application/views/backend/admin/sort_section.php
- Source File : i_academy/application/views/backend/admin/stripe_checkout_for_instructor_revenue.php
- Source File : i_academy/application/views/backend/admin/stripe_payment_gateway_form.php
- Source File : i_academy/application/views/backend/admin/sub_categories.php
- Source File : i_academy/application/views/backend/admin/sub_category_add.php
- Source File : i_academy/application/views/backend/admin/sub_category_edit.php
- Source File : i_academy/application/views/backend/admin/system_settings.php
- Source File : i_academy/application/views/backend/admin/theme_settings.php
- Source File : i_academy/application/views/backend/admin/transaction.php
- Source File : i_academy/application/views/backend/admin/users.php
- Source File : i_academy/application/views/backend/admin/user_add.php
- Source File : i_academy/application/views/backend/admin/user_edit.php
- Source File : i_academy/application/views/backend/admin/video_player.php
- Source File : i_academy/application/views/backend/admin/video_type_lesson_add.php
- Source File : i_academy/application/views/backend/admin/video_type_lesson_edit.php
- Source File : i_academy/application/views/backend/admin/vimeo_type_lesson_add.php
- Source File : i_academy/application/views/backend/admin/vimeo_type_lesson_edit.php
- Source File : i_academy/application/views/backend/admin/youtube_type_lesson_add.php
- Source File : i_academy/application/views/backend/admin/youtube_type_lesson_edit.php
- Source File : i_academy/application/views/backend/user/application_details.php
- Source File : i_academy/application/views/backend/user/application_form.php
- Source File : i_academy/application/views/backend/user/application_list.php
- Source File : i_academy/application/views/backend/user/become_an_instructor.php
- Source File : i_academy/application/views/backend/user/courses-server-side.php
- Source File : i_academy/application/views/backend/user/courses.php
- Source File : i_academy/application/views/backend/user/course_add.php
- Source File : i_academy/application/views/backend/user/course_add_shortcut.php
- Source File : i_academy/application/views/backend/user/course_edit.php
- Source File : i_academy/application/views/backend/user/course_media_add.php
- Source File : i_academy/application/views/backend/user/course_media_edit.php
- Source File : i_academy/application/views/backend/user/curriculum.php
- Source File : i_academy/application/views/backend/user/dashboard-chart.php
- Source File : i_academy/application/views/backend/user/dashboard.php
- Source File : i_academy/application/views/backend/user/document_type_lesson_add.php
- Source File : i_academy/application/views/backend/user/document_type_lesson_edit.php
- Source File : i_academy/application/views/backend/user/html5_type_lesson_add.php
- Source File : i_academy/application/views/backend/user/html5_type_lesson_edit.php
- Source File : i_academy/application/views/backend/user/iframe_type_lesson_add.php
- Source File : i_academy/application/views/backend/user/iframe_type_lesson_edit.php
- Source File : i_academy/application/views/backend/user/image_type_lesson_add.php
- Source File : i_academy/application/views/backend/user/image_type_lesson_edit.php
- Source File : i_academy/application/views/backend/user/instructor_revenue.php
- Source File : i_academy/application/views/backend/user/invoice.php
- Source File : i_academy/application/views/backend/user/lesson_add.php
- Source File : i_academy/application/views/backend/user/lesson_edit.php
- Source File : i_academy/application/views/backend/user/lesson_types.php
- Source File : i_academy/application/views/backend/user/manage_multiple_choices_options.php
- Source File : i_academy/application/views/backend/user/navigation.php
- Source File : i_academy/application/views/backend/user/payment_settings.php
- Source File : i_academy/application/views/backend/user/payout_report.php
- Source File : i_academy/application/views/backend/user/question_add.php
- Source File : i_academy/application/views/backend/user/question_edit.php
- Source File : i_academy/application/views/backend/user/quiz_add.php
- Source File : i_academy/application/views/backend/user/quiz_edit.php
- Source File : i_academy/application/views/backend/user/quiz_questions.php
- Source File : i_academy/application/views/backend/user/request_withdrawal.php
- Source File : i_academy/application/views/backend/user/sales_report.php
- Source File : i_academy/application/views/backend/user/section_add.php
- Source File : i_academy/application/views/backend/user/section_edit.php
- Source File : i_academy/application/views/backend/user/sort_lesson.php
- Source File : i_academy/application/views/backend/user/sort_section.php
- Source File : i_academy/application/views/backend/user/users.php
- Source File : i_academy/application/views/backend/user/user_add.php
- Source File : i_academy/application/views/backend/user/user_edit.php
- Source File : i_academy/application/views/backend/user/video_type_lesson_add.php
- Source File : i_academy/application/views/backend/user/video_type_lesson_edit.php
- Source File : i_academy/application/views/backend/user/vimeo_type_lesson_add.php
- Source File : i_academy/application/views/backend/user/vimeo_type_lesson_edit.php
- Source File : i_academy/application/views/backend/user/youtube_type_lesson_add.php
- Source File : i_academy/application/views/backend/user/youtube_type_lesson_edit.php
- Source File : i_academy/application/views/email/common_template.php
- Source File : i_academy/application/views/email/email_verification.php
- Source File : i_academy/application/views/email/template.php
- Source File : i_academy/application/views/errors/cli/error_404.php
- Source File : i_academy/application/views/errors/cli/error_db.php
- Source File : i_academy/application/views/errors/cli/error_exception.php
- Source File : i_academy/application/views/errors/cli/error_general.php
- Source File : i_academy/application/views/errors/cli/error_php.php
- Source File : i_academy/application/views/errors/html/error_404.php
- Source File : i_academy/application/views/errors/html/error_db.php
- Source File : i_academy/application/views/errors/html/error_exception.php
- Source File : i_academy/application/views/errors/html/error_general.php
- Source File : i_academy/application/views/errors/html/error_php.php
- Source File : i_academy/application/views/frontend/default/404.php
- Source File : i_academy/application/views/frontend/default/about_us.php
- Source File : i_academy/application/views/frontend/default/active_courses.php
- Source File : i_academy/application/views/frontend/default/admin_login.php
- Source File : i_academy/application/views/frontend/default/all_category_page.php
- Source File : i_academy/application/views/frontend/default/animated-page-loader.php
- Source File : i_academy/application/views/frontend/default/blog.php
- Source File : i_academy/application/views/frontend/default/cart_items.php
- Source File : i_academy/application/views/frontend/default/category_wise_course_grid_layout.php
- Source File : i_academy/application/views/frontend/default/category_wise_course_list_layout.php
- Source File : i_academy/application/views/frontend/default/common_scripts.php
- Source File : i_academy/application/views/frontend/default/compare.php
- Source File : i_academy/application/views/frontend/default/cookie_policy.php
- Source File : i_academy/application/views/frontend/default/courses_page.php
- Source File : i_academy/application/views/frontend/default/course_page.php
- Source File : i_academy/application/views/frontend/default/course_search_page.php
- Source File : i_academy/application/views/frontend/default/create_course.php
- Source File : i_academy/application/views/frontend/default/draft_courses.php
- Source File : i_academy/application/views/frontend/default/edit_course.php
- Source File : i_academy/application/views/frontend/default/empty.php
- Source File : i_academy/application/views/frontend/default/eu-cookie.php
- Source File : i_academy/application/views/frontend/default/footer.php
- Source File : i_academy/application/views/frontend/default/home.php
- Source File : i_academy/application/views/frontend/default/includes_bottom.php
- Source File : i_academy/application/views/frontend/default/includes_top.php
- Source File : i_academy/application/views/frontend/default/index.php
- Source File : i_academy/application/views/frontend/default/inner_messages.php
- Source File : i_academy/application/views/frontend/default/instructor_dashboard.php
- Source File : i_academy/application/views/frontend/default/instructor_items.php
- Source File : i_academy/application/views/frontend/default/instructor_page.php
- Source File : i_academy/application/views/frontend/default/invoice.php
- Source File : i_academy/application/views/frontend/default/lessons.php
- Source File : i_academy/application/views/frontend/default/lesson_edit.php
- Source File : i_academy/application/views/frontend/default/logged_in_header.php
- Source File : i_academy/application/views/frontend/default/logged_out_header.php
- Source File : i_academy/application/views/frontend/default/login.php
- Source File : i_academy/application/views/frontend/default/manage_course_details.php
- Source File : i_academy/application/views/frontend/default/manage_lesson.php
- Source File : i_academy/application/views/frontend/default/manage_section.php
- Source File : i_academy/application/views/frontend/default/menu.php
- Source File : i_academy/application/views/frontend/default/modal.php
- Source File : i_academy/application/views/frontend/default/my_courses.php
- Source File : i_academy/application/views/frontend/default/my_messages.php
- Source File : i_academy/application/views/frontend/default/my_notifications.php
- Source File : i_academy/application/views/frontend/default/my_wishlist.php
- Source File : i_academy/application/views/frontend/default/notifications.php
- Source File : i_academy/application/views/frontend/default/old-quiz-question.php
- Source File : i_academy/application/views/frontend/default/payment_report.php
- Source File : i_academy/application/views/frontend/default/payment_settings.php
- Source File : i_academy/application/views/frontend/default/paypal_checkout.php
- Source File : i_academy/application/views/frontend/default/pending_courses.php
- Source File : i_academy/application/views/frontend/default/privacy_policy.php
- Source File : i_academy/application/views/frontend/default/profile_index.php
- Source File : i_academy/application/views/frontend/default/profile_menus.php
- Source File : i_academy/application/views/frontend/default/purchase_history.php
- Source File : i_academy/application/views/frontend/default/reload_my_courses.php
- Source File : i_academy/application/views/frontend/default/reload_my_wishlists.php
- Source File : i_academy/application/views/frontend/default/reload_section.php
- Source File : i_academy/application/views/frontend/default/request_API_token.php
- Source File : i_academy/application/views/frontend/default/reset_password.php
- Source File : i_academy/application/views/frontend/default/shopping_cart.php
- Source File : i_academy/application/views/frontend/default/shopping_cart_inner_view.php
- Source File : i_academy/application/views/frontend/default/sign_up.php
- Source File : i_academy/application/views/frontend/default/sign_up_password.php
- Source File : i_academy/application/views/frontend/default/stripe_checkout.php
- Source File : i_academy/application/views/frontend/default/terms_and_condition.php
- Source File : i_academy/application/views/frontend/default/update_user_photo.php
- Source File : i_academy/application/views/frontend/default/users.php
- Source File : i_academy/application/views/frontend/default/user_credentials.php
- Source File : i_academy/application/views/frontend/default/user_profile.php
- Source File : i_academy/application/views/frontend/default/verification_code.php
- Source File : i_academy/application/views/frontend/default/wishlist_items.php
- Source File : i_academy/application/views/install/footer.php
- Source File : i_academy/application/views/install/index.php
- Source File : i_academy/application/views/install/scripts.php
- Source File : i_academy/application/views/install/styles.php
- Source File : i_academy/application/views/install/main/finalizing_setup.php
- Source File : i_academy/application/views/install/main/step0.php
- Source File : i_academy/application/views/install/main/step1.php
- Source File : i_academy/application/views/install/main/step2.php
- Source File : i_academy/application/views/install/main/step3.php
- Source File : i_academy/application/views/install/main/step4.php
- Source File : i_academy/application/views/install/main/success.php
- Source File : i_academy/application/views/lessons/common_scripts.php
- Source File : i_academy/application/views/lessons/course_content_sidebar.php
- Source File : i_academy/application/views/lessons/eu-cookie.php
- Source File : i_academy/application/views/lessons/general_course_content_body.php
- Source File : i_academy/application/views/lessons/includes_bottom.php
- Source File : i_academy/application/views/lessons/includes_top.php
- Source File : i_academy/application/views/lessons/index.php
- Source File : i_academy/application/views/lessons/lessons.php
- Source File : i_academy/application/views/lessons/quiz_result.php
- Source File : i_academy/application/views/lessons/quiz_view.php
- Source File : i_academy/application/views/mobile/includes_bottom.php
- Source File : i_academy/application/views/mobile/includes_top.php
- Source File : i_academy/application/views/mobile/index.php
- Source File : i_academy/application/views/mobile/payment_gateway.php
- Source File : i_academy/application/views/mobile/payment_model.php
- Source File : i_academy/application/views/mobile/quiz.php
- Source File : i_academy/application/views/mobile/quiz_result.php
- Source File : i_academy/application/views/mobile/shopping_cart.php
- Source File : i_academy/application/views/mobile/stripe/stripe_payment_gateway_form.php
- Source File : i_academy/application/views/payment/eu-cookie.php
- Source File : i_academy/application/views/payment/includes_bottom.php
- Source File : i_academy/application/views/payment/includes_top.php
- Source File : i_academy/application/views/payment/index.php
- Source File : i_academy/application/views/payment/payment_gateway.php
- Source File : i_academy/application/views/payment/stripe/stripe_checkout.php
- Source File : i_academy/application/views/payment/stripe/stripe_payment_gateway_form.php
[+] Keyword Searched : Controllers
- Source File : i_academy/application/controllers/Admin.php
- Source File : i_academy/application/controllers/Api.php
- Source File : i_academy/application/controllers/Api_instructor.php
- Source File : i_academy/application/controllers/Checker.php
- Source File : i_academy/application/controllers/Home.php
- Source File : i_academy/application/controllers/Install.php
- Source File : i_academy/application/controllers/Login.php
- Source File : i_academy/application/controllers/Modal.php
- Source File : i_academy/application/controllers/Register.php
- Source File : i_academy/application/controllers/Updater.php
- Source File : i_academy/application/controllers/User.php
Identified Files Path
In this section, you’ll find a comprehensive list of project file paths that were parsed during the
analysis. This list was generated based on the selected file types during the scanning process and
was used to identify the areas of interest listed in the previous sections. It’s important to note that
this list includes all the files, making it a superset of the list provided in the "Parsed Paths - Areas
of Interest" section.
It is still recommended for code reviewers to review this list for any potentially interesting files
that may have been overlooked in the "Parsed Paths - Areas of Interest" section.
- Source File : i_academy/index.php
- Source File : i_academy/profile.xml
- Source File : i_academy/.htaccess
- Source File : i_academy/application/.htaccess
- Source File : i_academy/application/config/autoload.php
- Source File : i_academy/application/config/config.php
- Source File : i_academy/application/config/constants.php
- Source File : i_academy/application/config/database.php
- Source File : i_academy/application/config/doctypes.php
- Source File : i_academy/application/config/foreign_chars.php
- Source File : i_academy/application/config/hooks.php
- Source File : i_academy/application/config/memcached.php
- Source File : i_academy/application/config/migration.php
- Source File : i_academy/application/config/mimes.php
- Source File : i_academy/application/config/profiler.php
- Source File : i_academy/application/config/rest.php
- Source File : i_academy/application/config/routes.php
- Source File : i_academy/application/config/smileys.php
- Source File : i_academy/application/config/user_agents.php
- Source File : i_academy/application/controllers/Admin.php
- Source File : i_academy/application/controllers/Api.php
- Source File : i_academy/application/controllers/Api_instructor.php
- Source File : i_academy/application/controllers/Checker.php
- Source File : i_academy/application/controllers/Home.php
- Source File : i_academy/application/controllers/Install.php
- Source File : i_academy/application/controllers/Login.php
- Source File : i_academy/application/controllers/Modal.php
- Source File : i_academy/application/controllers/Register.php
- Source File : i_academy/application/controllers/Updater.php
- Source File : i_academy/application/controllers/User.php
- Source File : i_academy/application/helpers/addon_helper.php
- Source File : i_academy/application/helpers/common_helper.php
- Source File : i_academy/application/helpers/multi_language_helper.php
- Source File : i_academy/application/helpers/pagination_helper.php
- Source File : i_academy/application/helpers/user_helper.php
- Source File : i_academy/application/language/english/rest_controller_lang.php
- Source File : i_academy/application/libraries/Customcacheclass.php
- Source File : i_academy/application/libraries/Format.php
- Source File : i_academy/application/libraries/JWT.php
- Source File : i_academy/application/libraries/Paystack.php
- Source File : i_academy/application/libraries/REST_Controller.php
- Source File : i_academy/application/libraries/TokenHandler.php
- Source File : i_academy/application/libraries/Stripe/build.php
- Source File : i_academy/application/libraries/Stripe/init.php
- Source File : i_academy/application/libraries/Stripe/update_certs.php
- Source File : i_academy/application/libraries/Stripe/phpdoc.dist.xml
- Source File : i_academy/application/libraries/Stripe/lib/Account.php
- Source File : i_academy/application/libraries/Stripe/lib/AccountLink.php
- Source File : i_academy/application/libraries/Stripe/lib/AlipayAccount.php
- Source File : i_academy/application/libraries/Stripe/lib/ApiRequestor.php
- Source File : i_academy/application/libraries/Stripe/lib/ApiResource.php
- Source File : i_academy/application/libraries/Stripe/lib/ApiResponse.php
- Source File : i_academy/application/libraries/Stripe/lib/ApplePayDomain.php
- Source File : i_academy/application/libraries/Stripe/lib/ApplicationFee.php
- Source File : i_academy/application/libraries/Stripe/lib/ApplicationFeeRefund.php
- Source File : i_academy/application/libraries/Stripe/lib/Balance.php
- Source File : i_academy/application/libraries/Stripe/lib/BalanceTransaction.php
- Source File : i_academy/application/libraries/Stripe/lib/BankAccount.php
- Source File : i_academy/application/libraries/Stripe/lib/BaseStripeClient.php
- Source File : i_academy/application/libraries/Stripe/lib/BitcoinReceiver.php
- Source File : i_academy/application/libraries/Stripe/lib/BitcoinTransaction.php
- Source File : i_academy/application/libraries/Stripe/lib/Capability.php
- Source File : i_academy/application/libraries/Stripe/lib/Card.php
- Source File : i_academy/application/libraries/Stripe/lib/Charge.php
- Source File : i_academy/application/libraries/Stripe/lib/Collection.php
- Source File : i_academy/application/libraries/Stripe/lib/CountrySpec.php
- Source File : i_academy/application/libraries/Stripe/lib/Coupon.php
- Source File : i_academy/application/libraries/Stripe/lib/CreditNote.php
- Source File : i_academy/application/libraries/Stripe/lib/CreditNoteLineItem.php
- Source File : i_academy/application/libraries/Stripe/lib/Customer.php
- Source File : i_academy/application/libraries/Stripe/lib/CustomerBalanceTransaction.php
- Source File : i_academy/application/libraries/Stripe/lib/Discount.php
- Source File : i_academy/application/libraries/Stripe/lib/Dispute.php
- Source File : i_academy/application/libraries/Stripe/lib/EphemeralKey.php
- Source File : i_academy/application/libraries/Stripe/lib/ErrorObject.php
- Source File : i_academy/application/libraries/Stripe/lib/Event.php
- Source File : i_academy/application/libraries/Stripe/lib/ExchangeRate.php
- Source File : i_academy/application/libraries/Stripe/lib/File.php
- Source File : i_academy/application/libraries/Stripe/lib/FileLink.php
- Source File : i_academy/application/libraries/Stripe/lib/Invoice.php
- Source File : i_academy/application/libraries/Stripe/lib/InvoiceItem.php
- Source File : i_academy/application/libraries/Stripe/lib/InvoiceLineItem.php
- Source File : i_academy/application/libraries/Stripe/lib/LineItem.php
- Source File : i_academy/application/libraries/Stripe/lib/LoginLink.php
- Source File : i_academy/application/libraries/Stripe/lib/Mandate.php
- Source File : i_academy/application/libraries/Stripe/lib/OAuth.php
- Source File : i_academy/application/libraries/Stripe/lib/OAuthErrorObject.php
- Source File : i_academy/application/libraries/Stripe/lib/Order.php
- Source File : i_academy/application/libraries/Stripe/lib/OrderItem.php
- Source File : i_academy/application/libraries/Stripe/lib/OrderReturn.php
- Source File : i_academy/application/libraries/Stripe/lib/PaymentIntent.php
- Source File : i_academy/application/libraries/Stripe/lib/PaymentMethod.php
- Source File : i_academy/application/libraries/Stripe/lib/Payout.php
- Source File : i_academy/application/libraries/Stripe/lib/Person.php
- Source File : i_academy/application/libraries/Stripe/lib/Plan.php
- Source File : i_academy/application/libraries/Stripe/lib/Price.php
- Source File : i_academy/application/libraries/Stripe/lib/Product.php
- Source File : i_academy/application/libraries/Stripe/lib/Recipient.php
- Source File : i_academy/application/libraries/Stripe/lib/RecipientTransfer.php
- Source File : i_academy/application/libraries/Stripe/lib/Refund.php
- Source File : i_academy/application/libraries/Stripe/lib/RequestTelemetry.php
- Source File : i_academy/application/libraries/Stripe/lib/Review.php
- Source File : i_academy/application/libraries/Stripe/lib/SetupIntent.php
- Source File : i_academy/application/libraries/Stripe/lib/SingletonApiResource.php
- Source File : i_academy/application/libraries/Stripe/lib/SKU.php
- Source File : i_academy/application/libraries/Stripe/lib/Source.php
- Source File : i_academy/application/libraries/Stripe/lib/SourceTransaction.php
- Source File : i_academy/application/libraries/Stripe/lib/Stripe.php
- Source File : i_academy/application/libraries/Stripe/lib/StripeClient.php
- Source File : i_academy/application/libraries/Stripe/lib/StripeClientInterface.php
- Source File : i_academy/application/libraries/Stripe/lib/StripeObject.php
- Source File : i_academy/application/libraries/Stripe/lib/Subscription.php
- Source File : i_academy/application/libraries/Stripe/lib/SubscriptionItem.php
- Source File : i_academy/application/libraries/Stripe/lib/SubscriptionSchedule.php
- Source File : i_academy/application/libraries/Stripe/lib/TaxId.php
- Source File : i_academy/application/libraries/Stripe/lib/TaxRate.php
- Source File : i_academy/application/libraries/Stripe/lib/ThreeDSecure.php
- Source File : i_academy/application/libraries/Stripe/lib/Token.php
- Source File : i_academy/application/libraries/Stripe/lib/Topup.php
- Source File : i_academy/application/libraries/Stripe/lib/Transfer.php
- Source File : i_academy/application/libraries/Stripe/lib/TransferReversal.php
- Source File : i_academy/application/libraries/Stripe/lib/UsageRecord.php
- Source File : i_academy/application/libraries/Stripe/lib/UsageRecordSummary.php
- Source File : i_academy/application/libraries/Stripe/lib/Webhook.php
- Source File : i_academy/application/libraries/Stripe/lib/WebhookEndpoint.php
- Source File : i_academy/application/libraries/Stripe/lib/WebhookSignature.php
- Source File : i_academy/application/libraries/Stripe/lib/ApiOperations/All.php
- Source File : i_academy/application/libraries/Stripe/lib/ApiOperations/Create.php
- Source File : i_academy/application/libraries/Stripe/lib/ApiOperations/Delete.php
- Source File : i_academy/application/libraries/Stripe/lib/ApiOperations/NestedResource.php
- Source File : i_academy/application/libraries/Stripe/lib/ApiOperations/Request.php
- Source File : i_academy/application/libraries/Stripe/lib/ApiOperations/Retrieve.php
- Source File : i_academy/application/libraries/Stripe/lib/ApiOperations/Update.php
- Source File : i_academy/application/libraries/Stripe/lib/BillingPortal/Session.php
- Source File : i_academy/application/libraries/Stripe/lib/Checkout/Session.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/ApiConnectionException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/ApiErrorException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/AuthenticationException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/BadMethodCallException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/CardException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/ExceptionInterface.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/IdempotencyException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/InvalidArgumentException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/InvalidRequestException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/PermissionException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/RateLimitException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/SignatureVerificationException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/UnexpectedValueException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/UnknownApiErrorException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/ExceptionInterface.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/InvalidClientException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/InvalidGrantException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/InvalidRequestException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/InvalidScopeException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/OAuthErrorException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/UnknownOAuthErrorException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/UnsupportedGrantTypeException.php
- Source File : i_academy/application/libraries/Stripe/lib/Exception/OAuth/UnsupportedResponseTypeException.php
- Source File : i_academy/application/libraries/Stripe/lib/HttpClient/ClientInterface.php
- Source File : i_academy/application/libraries/Stripe/lib/HttpClient/CurlClient.php
- Source File : i_academy/application/libraries/Stripe/lib/Issuing/Authorization.php
- Source File : i_academy/application/libraries/Stripe/lib/Issuing/Card.php
- Source File : i_academy/application/libraries/Stripe/lib/Issuing/CardDetails.php
- Source File : i_academy/application/libraries/Stripe/lib/Issuing/Cardholder.php
- Source File : i_academy/application/libraries/Stripe/lib/Issuing/Dispute.php
- Source File : i_academy/application/libraries/Stripe/lib/Issuing/Transaction.php
- Source File : i_academy/application/libraries/Stripe/lib/Radar/EarlyFraudWarning.php
- Source File : i_academy/application/libraries/Stripe/lib/Radar/ValueList.php
- Source File : i_academy/application/libraries/Stripe/lib/Radar/ValueListItem.php
- Source File : i_academy/application/libraries/Stripe/lib/Reporting/ReportRun.php
- Source File : i_academy/application/libraries/Stripe/lib/Reporting/ReportType.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/AbstractService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/AbstractServiceFactory.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/AccountLinkService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/AccountService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/ApplePayDomainService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/ApplicationFeeService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/BalanceService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/BalanceTransactionService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/ChargeService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/CoreServiceFactory.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/CountrySpecService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/CouponService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/CreditNoteService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/CustomerService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/DisputeService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/EphemeralKeyService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/EventService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/ExchangeRateService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/FileLinkService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/FileService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/InvoiceItemService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/InvoiceService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/MandateService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/OrderReturnService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/OrderService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/PaymentIntentService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/PaymentMethodService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/PayoutService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/PlanService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/PriceService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/ProductService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/RefundService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/ReviewService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/SetupIntentService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/SkuService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/SourceService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/SubscriptionItemService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/SubscriptionScheduleService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/SubscriptionService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/TaxRateService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/TokenService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/TopupService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/TransferService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/WebhookEndpointService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/BillingPortal/BillingPortalServiceFactory.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/BillingPortal/SessionService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Checkout/CheckoutServiceFactory.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Checkout/SessionService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Issuing/AuthorizationService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Issuing/CardholderService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Issuing/CardService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Issuing/DisputeService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Issuing/IssuingServiceFactory.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Issuing/TransactionService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Radar/EarlyFraudWarningService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Radar/RadarServiceFactory.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Radar/ValueListItemService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Radar/ValueListService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Reporting/ReportingServiceFactory.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Reporting/ReportRunService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Reporting/ReportTypeService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Sigma/ScheduledQueryRunService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Sigma/SigmaServiceFactory.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Terminal/ConnectionTokenService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Terminal/LocationService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Terminal/ReaderService.php
- Source File : i_academy/application/libraries/Stripe/lib/Service/Terminal/TerminalServiceFactory.php
- Source File : i_academy/application/libraries/Stripe/lib/Sigma/ScheduledQueryRun.php
- Source File : i_academy/application/libraries/Stripe/lib/Terminal/ConnectionToken.php
- Source File : i_academy/application/libraries/Stripe/lib/Terminal/Location.php
- Source File : i_academy/application/libraries/Stripe/lib/Terminal/Reader.php
- Source File : i_academy/application/libraries/Stripe/lib/Util/CaseInsensitiveArray.php
- Source File : i_academy/application/libraries/Stripe/lib/Util/DefaultLogger.php
- Source File : i_academy/application/libraries/Stripe/lib/Util/LoggerInterface.php
- Source File : i_academy/application/libraries/Stripe/lib/Util/ObjectTypes.php
- Source File : i_academy/application/libraries/Stripe/lib/Util/RandomGenerator.php
- Source File : i_academy/application/libraries/Stripe/lib/Util/RequestOptions.php
- Source File : i_academy/application/libraries/Stripe/lib/Util/Set.php
- Source File : i_academy/application/libraries/Stripe/lib/Util/Util.php
- Source File : i_academy/application/logs/log-2022-08-04.php
- Source File : i_academy/application/logs/log-2022-08-05.php
- Source File : i_academy/application/logs/log-2022-08-06.php
- Source File : i_academy/application/models/Addon_model.php
- Source File : i_academy/application/models/Api_instructor_model.php
- Source File : i_academy/application/models/Api_model.php
- Source File : i_academy/application/models/Crud_model.php
- Source File : i_academy/application/models/Email_model.php
- Source File : i_academy/application/models/Jwt_model.php
- Source File : i_academy/application/models/Lazyloaddata_model.php
- Source File : i_academy/application/models/Payment_model.php
- Source File : i_academy/application/models/User_model.php
- Source File : i_academy/application/models/Video_model.php
- Source File : i_academy/application/views/backend/common_scripts.php
- Source File : i_academy/application/views/backend/footer.php
- Source File : i_academy/application/views/backend/header.php
- Source File : i_academy/application/views/backend/includes_bottom.php
- Source File : i_academy/application/views/backend/includes_top.php
- Source File : i_academy/application/views/backend/index.php
- Source File : i_academy/application/views/backend/metas.php
- Source File : i_academy/application/views/backend/modal.php
- Source File : i_academy/application/views/backend/admin/about.php
- Source File : i_academy/application/views/backend/admin/about_this_addon.php
- Source File : i_academy/application/views/backend/admin/active_courses.php
- Source File : i_academy/application/views/backend/admin/addons.php
- Source File : i_academy/application/views/backend/admin/addon_add.php
- Source File : i_academy/application/views/backend/admin/addon_update.php
- Source File : i_academy/application/views/backend/admin/admins.php
- Source File : i_academy/application/views/backend/admin/admin_add.php
- Source File : i_academy/application/views/backend/admin/admin_edit.php
- Source File : i_academy/application/views/backend/admin/admin_permission.php
- Source File : i_academy/application/views/backend/admin/admin_revenue.php
- Source File : i_academy/application/views/backend/admin/ajax_get_section.php
- Source File : i_academy/application/views/backend/admin/ajax_get_sub_category.php
- Source File : i_academy/application/views/backend/admin/application_details.php
- Source File : i_academy/application/views/backend/admin/application_list.php
- Source File : i_academy/application/views/backend/admin/available_addon.php
- Source File : i_academy/application/views/backend/admin/categories.php
- Source File : i_academy/application/views/backend/admin/category_add.php
- Source File : i_academy/application/views/backend/admin/category_edit.php
- Source File : i_academy/application/views/backend/admin/coupons.php
- Source File : i_academy/application/views/backend/admin/coupon_add.php
- Source File : i_academy/application/views/backend/admin/coupon_edit.php
- Source File : i_academy/application/views/backend/admin/courses-server-side.php
- Source File : i_academy/application/views/backend/admin/courses.php
- Source File : i_academy/application/views/backend/admin/course_add.php
- Source File : i_academy/application/views/backend/admin/course_add_shortcut.php
- Source File : i_academy/application/views/backend/admin/course_details.php
- Source File : i_academy/application/views/backend/admin/course_edit.php
- Source File : i_academy/application/views/backend/admin/course_media_add.php
- Source File : i_academy/application/views/backend/admin/course_media_edit.php
- Source File : i_academy/application/views/backend/admin/curriculum.php
- Source File : i_academy/application/views/backend/admin/dashboard-chart.php
- Source File : i_academy/application/views/backend/admin/dashboard.php
- Source File : i_academy/application/views/backend/admin/document_type_lesson_add.php
- Source File : i_academy/application/views/backend/admin/document_type_lesson_edit.php
- Source File : i_academy/application/views/backend/admin/dragula.php
- Source File : i_academy/application/views/backend/admin/enrol_history.php
- Source File : i_academy/application/views/backend/admin/enrol_student.php
- Source File : i_academy/application/views/backend/admin/frontend_settings.php
- Source File : i_academy/application/views/backend/admin/html5_type_lesson_add.php
- Source File : i_academy/application/views/backend/admin/html5_type_lesson_edit.php
- Source File : i_academy/application/views/backend/admin/iframe_type_lesson_add.php
- Source File : i_academy/application/views/backend/admin/iframe_type_lesson_edit.php
- Source File : i_academy/application/views/backend/admin/image_type_lesson_add.php
- Source File : i_academy/application/views/backend/admin/image_type_lesson_edit.php
- Source File : i_academy/application/views/backend/admin/instructors.php
- Source File : i_academy/application/views/backend/admin/instructor_add.php
- Source File : i_academy/application/views/backend/admin/instructor_edit.php
- Source File : i_academy/application/views/backend/admin/instructor_payout.php
- Source File : i_academy/application/views/backend/admin/instructor_revenue.php
- Source File : i_academy/application/views/backend/admin/instructor_settings.php
- Source File : i_academy/application/views/backend/admin/invoice.php
- Source File : i_academy/application/views/backend/admin/lesson_add.php
- Source File : i_academy/application/views/backend/admin/lesson_edit.php
- Source File : i_academy/application/views/backend/admin/lesson_types.php
- Source File : i_academy/application/views/backend/admin/logs.php
- Source File : i_academy/application/views/backend/admin/mail_on_course_status_changing_modal.php
- Source File : i_academy/application/views/backend/admin/manage_language.php
- Source File : i_academy/application/views/backend/admin/manage_multiple_choices_options.php
- Source File : i_academy/application/views/backend/admin/manage_profile.php
- Source File : i_academy/application/views/backend/admin/message.php
- Source File : i_academy/application/views/backend/admin/message_home.php
- Source File : i_academy/application/views/backend/admin/message_new.php
- Source File : i_academy/application/views/backend/admin/message_read.php
- Source File : i_academy/application/views/backend/admin/navigation.php
- Source File : i_academy/application/views/backend/admin/password_resets.php
- Source File : i_academy/application/views/backend/admin/payment_settings.php
- Source File : i_academy/application/views/backend/admin/paypal_checkout_for_instructor_revenue.php
- Source File : i_academy/application/views/backend/admin/pending_courses.php
- Source File : i_academy/application/views/backend/admin/purchase_history.php
- Source File : i_academy/application/views/backend/admin/question_add.php
- Source File : i_academy/application/views/backend/admin/question_edit.php
- Source File : i_academy/application/views/backend/admin/quiz_add.php
- Source File : i_academy/application/views/backend/admin/quiz_edit.php
- Source File : i_academy/application/views/backend/admin/quiz_questions.php
- Source File : i_academy/application/views/backend/admin/section_add.php
- Source File : i_academy/application/views/backend/admin/section_edit.php
- Source File : i_academy/application/views/backend/admin/shortcut_add_student.php
- Source File : i_academy/application/views/backend/admin/shortcut_enrol_student.php
- Source File : i_academy/application/views/backend/admin/smtp_settings.php
- Source File : i_academy/application/views/backend/admin/sort_lesson.php
- Source File : i_academy/application/views/backend/admin/sort_section.php
- Source File : i_academy/application/views/backend/admin/stripe_checkout_for_instructor_revenue.php
- Source File : i_academy/application/views/backend/admin/stripe_payment_gateway_form.php
- Source File : i_academy/application/views/backend/admin/sub_categories.php
- Source File : i_academy/application/views/backend/admin/sub_category_add.php
- Source File : i_academy/application/views/backend/admin/sub_category_edit.php
- Source File : i_academy/application/views/backend/admin/system_settings.php
- Source File : i_academy/application/views/backend/admin/theme_settings.php
- Source File : i_academy/application/views/backend/admin/transaction.php
- Source File : i_academy/application/views/backend/admin/users.php
- Source File : i_academy/application/views/backend/admin/user_add.php
- Source File : i_academy/application/views/backend/admin/user_edit.php
- Source File : i_academy/application/views/backend/admin/video_player.php
- Source File : i_academy/application/views/backend/admin/video_type_lesson_add.php
- Source File : i_academy/application/views/backend/admin/video_type_lesson_edit.php
- Source File : i_academy/application/views/backend/admin/vimeo_type_lesson_add.php
- Source File : i_academy/application/views/backend/admin/vimeo_type_lesson_edit.php
- Source File : i_academy/application/views/backend/admin/youtube_type_lesson_add.php
- Source File : i_academy/application/views/backend/admin/youtube_type_lesson_edit.php
- Source File : i_academy/application/views/backend/user/application_details.php
- Source File : i_academy/application/views/backend/user/application_form.php
- Source File : i_academy/application/views/backend/user/application_list.php
- Source File : i_academy/application/views/backend/user/become_an_instructor.php
- Source File : i_academy/application/views/backend/user/courses-server-side.php
- Source File : i_academy/application/views/backend/user/courses.php
- Source File : i_academy/application/views/backend/user/course_add.php
- Source File : i_academy/application/views/backend/user/course_add_shortcut.php
- Source File : i_academy/application/views/backend/user/course_edit.php
- Source File : i_academy/application/views/backend/user/course_media_add.php
- Source File : i_academy/application/views/backend/user/course_media_edit.php
- Source File : i_academy/application/views/backend/user/curriculum.php
- Source File : i_academy/application/views/backend/user/dashboard-chart.php
- Source File : i_academy/application/views/backend/user/dashboard.php
- Source File : i_academy/application/views/backend/user/document_type_lesson_add.php
- Source File : i_academy/application/views/backend/user/document_type_lesson_edit.php
- Source File : i_academy/application/views/backend/user/html5_type_lesson_add.php
- Source File : i_academy/application/views/backend/user/html5_type_lesson_edit.php
- Source File : i_academy/application/views/backend/user/iframe_type_lesson_add.php
- Source File : i_academy/application/views/backend/user/iframe_type_lesson_edit.php
- Source File : i_academy/application/views/backend/user/image_type_lesson_add.php
- Source File : i_academy/application/views/backend/user/image_type_lesson_edit.php
- Source File : i_academy/application/views/backend/user/instructor_revenue.php
- Source File : i_academy/application/views/backend/user/invoice.php
- Source File : i_academy/application/views/backend/user/lesson_add.php
- Source File : i_academy/application/views/backend/user/lesson_edit.php
- Source File : i_academy/application/views/backend/user/lesson_types.php
- Source File : i_academy/application/views/backend/user/manage_multiple_choices_options.php
- Source File : i_academy/application/views/backend/user/navigation.php
- Source File : i_academy/application/views/backend/user/payment_settings.php
- Source File : i_academy/application/views/backend/user/payout_report.php
- Source File : i_academy/application/views/backend/user/question_add.php
- Source File : i_academy/application/views/backend/user/question_edit.php
- Source File : i_academy/application/views/backend/user/quiz_add.php
- Source File : i_academy/application/views/backend/user/quiz_edit.php
- Source File : i_academy/application/views/backend/user/quiz_questions.php
- Source File : i_academy/application/views/backend/user/request_withdrawal.php
- Source File : i_academy/application/views/backend/user/sales_report.php
- Source File : i_academy/application/views/backend/user/section_add.php
- Source File : i_academy/application/views/backend/user/section_edit.php
- Source File : i_academy/application/views/backend/user/sort_lesson.php
- Source File : i_academy/application/views/backend/user/sort_section.php
- Source File : i_academy/application/views/backend/user/users.php
- Source File : i_academy/application/views/backend/user/user_add.php
- Source File : i_academy/application/views/backend/user/user_edit.php
- Source File : i_academy/application/views/backend/user/video_type_lesson_add.php
- Source File : i_academy/application/views/backend/user/video_type_lesson_edit.php
- Source File : i_academy/application/views/backend/user/vimeo_type_lesson_add.php
- Source File : i_academy/application/views/backend/user/vimeo_type_lesson_edit.php
- Source File : i_academy/application/views/backend/user/youtube_type_lesson_add.php
- Source File : i_academy/application/views/backend/user/youtube_type_lesson_edit.php
- Source File : i_academy/application/views/email/common_template.php
- Source File : i_academy/application/views/email/email_verification.php
- Source File : i_academy/application/views/email/template.php
- Source File : i_academy/application/views/errors/cli/error_404.php
- Source File : i_academy/application/views/errors/cli/error_db.php
- Source File : i_academy/application/views/errors/cli/error_exception.php
- Source File : i_academy/application/views/errors/cli/error_general.php
- Source File : i_academy/application/views/errors/cli/error_php.php
- Source File : i_academy/application/views/errors/html/error_404.php
- Source File : i_academy/application/views/errors/html/error_db.php
- Source File : i_academy/application/views/errors/html/error_exception.php
- Source File : i_academy/application/views/errors/html/error_general.php
- Source File : i_academy/application/views/errors/html/error_php.php
- Source File : i_academy/application/views/frontend/default/404.php
- Source File : i_academy/application/views/frontend/default/about_us.php
- Source File : i_academy/application/views/frontend/default/active_courses.php
- Source File : i_academy/application/views/frontend/default/admin_login.php
- Source File : i_academy/application/views/frontend/default/all_category_page.php
- Source File : i_academy/application/views/frontend/default/animated-page-loader.php
- Source File : i_academy/application/views/frontend/default/blog.php
- Source File : i_academy/application/views/frontend/default/cart_items.php
- Source File : i_academy/application/views/frontend/default/category_wise_course_grid_layout.php
- Source File : i_academy/application/views/frontend/default/category_wise_course_list_layout.php
- Source File : i_academy/application/views/frontend/default/common_scripts.php
- Source File : i_academy/application/views/frontend/default/compare.php
- Source File : i_academy/application/views/frontend/default/cookie_policy.php
- Source File : i_academy/application/views/frontend/default/courses_page.php
- Source File : i_academy/application/views/frontend/default/course_page.php
- Source File : i_academy/application/views/frontend/default/course_search_page.php
- Source File : i_academy/application/views/frontend/default/create_course.php
- Source File : i_academy/application/views/frontend/default/draft_courses.php
- Source File : i_academy/application/views/frontend/default/edit_course.php
- Source File : i_academy/application/views/frontend/default/empty.php
- Source File : i_academy/application/views/frontend/default/eu-cookie.php
- Source File : i_academy/application/views/frontend/default/footer.php
- Source File : i_academy/application/views/frontend/default/home.php
- Source File : i_academy/application/views/frontend/default/includes_bottom.php
- Source File : i_academy/application/views/frontend/default/includes_top.php
- Source File : i_academy/application/views/frontend/default/index.php
- Source File : i_academy/application/views/frontend/default/inner_messages.php
- Source File : i_academy/application/views/frontend/default/instructor_dashboard.php
- Source File : i_academy/application/views/frontend/default/instructor_items.php
- Source File : i_academy/application/views/frontend/default/instructor_page.php
- Source File : i_academy/application/views/frontend/default/invoice.php
- Source File : i_academy/application/views/frontend/default/lessons.php
- Source File : i_academy/application/views/frontend/default/lesson_edit.php
- Source File : i_academy/application/views/frontend/default/logged_in_header.php
- Source File : i_academy/application/views/frontend/default/logged_out_header.php
- Source File : i_academy/application/views/frontend/default/login.php
- Source File : i_academy/application/views/frontend/default/manage_course_details.php
- Source File : i_academy/application/views/frontend/default/manage_lesson.php
- Source File : i_academy/application/views/frontend/default/manage_section.php
- Source File : i_academy/application/views/frontend/default/menu.php
- Source File : i_academy/application/views/frontend/default/modal.php
- Source File : i_academy/application/views/frontend/default/my_courses.php
- Source File : i_academy/application/views/frontend/default/my_messages.php
- Source File : i_academy/application/views/frontend/default/my_notifications.php
- Source File : i_academy/application/views/frontend/default/my_wishlist.php
- Source File : i_academy/application/views/frontend/default/notifications.php
- Source File : i_academy/application/views/frontend/default/old-quiz-question.php
- Source File : i_academy/application/views/frontend/default/payment_report.php
- Source File : i_academy/application/views/frontend/default/payment_settings.php
- Source File : i_academy/application/views/frontend/default/paypal_checkout.php
- Source File : i_academy/application/views/frontend/default/pending_courses.php
- Source File : i_academy/application/views/frontend/default/privacy_policy.php
- Source File : i_academy/application/views/frontend/default/profile_index.php
- Source File : i_academy/application/views/frontend/default/profile_menus.php
- Source File : i_academy/application/views/frontend/default/purchase_history.php
- Source File : i_academy/application/views/frontend/default/reload_my_courses.php
- Source File : i_academy/application/views/frontend/default/reload_my_wishlists.php
- Source File : i_academy/application/views/frontend/default/reload_section.php
- Source File : i_academy/application/views/frontend/default/request_API_token.php
- Source File : i_academy/application/views/frontend/default/reset_password.php
- Source File : i_academy/application/views/frontend/default/shopping_cart.php
- Source File : i_academy/application/views/frontend/default/shopping_cart_inner_view.php
- Source File : i_academy/application/views/frontend/default/sign_up.php
- Source File : i_academy/application/views/frontend/default/sign_up_password.php
- Source File : i_academy/application/views/frontend/default/stripe_checkout.php
- Source File : i_academy/application/views/frontend/default/terms_and_condition.php
- Source File : i_academy/application/views/frontend/default/update_user_photo.php
- Source File : i_academy/application/views/frontend/default/users.php
- Source File : i_academy/application/views/frontend/default/user_credentials.php
- Source File : i_academy/application/views/frontend/default/user_profile.php
- Source File : i_academy/application/views/frontend/default/verification_code.php
- Source File : i_academy/application/views/frontend/default/wishlist_items.php
- Source File : i_academy/application/views/install/footer.php
- Source File : i_academy/application/views/install/index.php
- Source File : i_academy/application/views/install/scripts.php
- Source File : i_academy/application/views/install/styles.php
- Source File : i_academy/application/views/install/main/finalizing_setup.php
- Source File : i_academy/application/views/install/main/step0.php
- Source File : i_academy/application/views/install/main/step1.php
- Source File : i_academy/application/views/install/main/step2.php
- Source File : i_academy/application/views/install/main/step3.php
- Source File : i_academy/application/views/install/main/step4.php
- Source File : i_academy/application/views/install/main/success.php
- Source File : i_academy/application/views/lessons/common_scripts.php
- Source File : i_academy/application/views/lessons/course_content_sidebar.php
- Source File : i_academy/application/views/lessons/eu-cookie.php
- Source File : i_academy/application/views/lessons/general_course_content_body.php
- Source File : i_academy/application/views/lessons/includes_bottom.php
- Source File : i_academy/application/views/lessons/includes_top.php
- Source File : i_academy/application/views/lessons/index.php
- Source File : i_academy/application/views/lessons/lessons.php
- Source File : i_academy/application/views/lessons/quiz_result.php
- Source File : i_academy/application/views/lessons/quiz_view.php
- Source File : i_academy/application/views/mobile/includes_bottom.php
- Source File : i_academy/application/views/mobile/includes_top.php
- Source File : i_academy/application/views/mobile/index.php
- Source File : i_academy/application/views/mobile/payment_gateway.php
- Source File : i_academy/application/views/mobile/payment_model.php
- Source File : i_academy/application/views/mobile/quiz.php
- Source File : i_academy/application/views/mobile/quiz_result.php
- Source File : i_academy/application/views/mobile/shopping_cart.php
- Source File : i_academy/application/views/mobile/stripe/stripe_payment_gateway_form.php
- Source File : i_academy/application/views/payment/eu-cookie.php
- Source File : i_academy/application/views/payment/includes_bottom.php
- Source File : i_academy/application/views/payment/includes_top.php
- Source File : i_academy/application/views/payment/index.php
- Source File : i_academy/application/views/payment/payment_gateway.php
- Source File : i_academy/application/views/payment/stripe/stripe_checkout.php
- Source File : i_academy/application/views/payment/stripe/stripe_payment_gateway_form.php
- Source File : i_academy/system/.htaccess
- Source File : i_academy/system/core/Benchmark.php
- Source File : i_academy/system/core/CodeIgniter.php
- Source File : i_academy/system/core/Common.php
- Source File : i_academy/system/core/Config.php
- Source File : i_academy/system/core/Controller.php
- Source File : i_academy/system/core/Exceptions.php
- Source File : i_academy/system/core/Hooks.php
- Source File : i_academy/system/core/Input.php
- Source File : i_academy/system/core/Lang.php
- Source File : i_academy/system/core/Loader.php
- Source File : i_academy/system/core/Log.php
- Source File : i_academy/system/core/Model.php
- Source File : i_academy/system/core/Output.php
- Source File : i_academy/system/core/Router.php
- Source File : i_academy/system/core/Security.php
- Source File : i_academy/system/core/URI.php
- Source File : i_academy/system/core/Utf8.php
- Source File : i_academy/system/core/compat/hash.php
- Source File : i_academy/system/core/compat/mbstring.php
- Source File : i_academy/system/core/compat/password.php
- Source File : i_academy/system/core/compat/standard.php
- Source File : i_academy/system/database/DB.php
- Source File : i_academy/system/database/DB_cache.php
- Source File : i_academy/system/database/DB_driver.php
- Source File : i_academy/system/database/DB_forge.php
- Source File : i_academy/system/database/DB_query_builder.php
- Source File : i_academy/system/database/DB_result.php
- Source File : i_academy/system/database/DB_utility.php
- Source File : i_academy/system/database/drivers/cubrid/cubrid_driver.php
- Source File : i_academy/system/database/drivers/cubrid/cubrid_forge.php
- Source File : i_academy/system/database/drivers/cubrid/cubrid_result.php
- Source File : i_academy/system/database/drivers/cubrid/cubrid_utility.php
- Source File : i_academy/system/database/drivers/ibase/ibase_driver.php
- Source File : i_academy/system/database/drivers/ibase/ibase_forge.php
- Source File : i_academy/system/database/drivers/ibase/ibase_result.php
- Source File : i_academy/system/database/drivers/ibase/ibase_utility.php
- Source File : i_academy/system/database/drivers/mssql/mssql_driver.php
- Source File : i_academy/system/database/drivers/mssql/mssql_forge.php
- Source File : i_academy/system/database/drivers/mssql/mssql_result.php
- Source File : i_academy/system/database/drivers/mssql/mssql_utility.php
- Source File : i_academy/system/database/drivers/mysql/mysql_driver.php
- Source File : i_academy/system/database/drivers/mysql/mysql_forge.php
- Source File : i_academy/system/database/drivers/mysql/mysql_result.php
- Source File : i_academy/system/database/drivers/mysql/mysql_utility.php
- Source File : i_academy/system/database/drivers/mysqli/mysqli_driver.php
- Source File : i_academy/system/database/drivers/mysqli/mysqli_forge.php
- Source File : i_academy/system/database/drivers/mysqli/mysqli_result.php
- Source File : i_academy/system/database/drivers/mysqli/mysqli_utility.php
- Source File : i_academy/system/database/drivers/oci8/oci8_driver.php
- Source File : i_academy/system/database/drivers/oci8/oci8_forge.php
- Source File : i_academy/system/database/drivers/oci8/oci8_result.php
- Source File : i_academy/system/database/drivers/oci8/oci8_utility.php
- Source File : i_academy/system/database/drivers/odbc/odbc_driver.php
- Source File : i_academy/system/database/drivers/odbc/odbc_forge.php
- Source File : i_academy/system/database/drivers/odbc/odbc_result.php
- Source File : i_academy/system/database/drivers/odbc/odbc_utility.php
- Source File : i_academy/system/database/drivers/pdo/pdo_driver.php
- Source File : i_academy/system/database/drivers/pdo/pdo_forge.php
- Source File : i_academy/system/database/drivers/pdo/pdo_result.php
- Source File : i_academy/system/database/drivers/pdo/pdo_utility.php
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_4d_driver.php
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_4d_forge.php
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_cubrid_driver.php
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_cubrid_forge.php
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_dblib_driver.php
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_dblib_forge.php
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_firebird_driver.php
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_firebird_forge.php
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_ibm_driver.php
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_ibm_forge.php
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_informix_driver.php
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_informix_forge.php
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_mysql_driver.php
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_mysql_forge.php
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_oci_driver.php
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_oci_forge.php
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_odbc_driver.php
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_odbc_forge.php
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_pgsql_driver.php
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_pgsql_forge.php
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_sqlite_driver.php
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_sqlite_forge.php
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_sqlsrv_driver.php
- Source File : i_academy/system/database/drivers/pdo/subdrivers/pdo_sqlsrv_forge.php
- Source File : i_academy/system/database/drivers/postgre/postgre_driver.php
- Source File : i_academy/system/database/drivers/postgre/postgre_forge.php
- Source File : i_academy/system/database/drivers/postgre/postgre_result.php
- Source File : i_academy/system/database/drivers/postgre/postgre_utility.php
- Source File : i_academy/system/database/drivers/sqlite/sqlite_driver.php
- Source File : i_academy/system/database/drivers/sqlite/sqlite_forge.php
- Source File : i_academy/system/database/drivers/sqlite/sqlite_result.php
- Source File : i_academy/system/database/drivers/sqlite/sqlite_utility.php
- Source File : i_academy/system/database/drivers/sqlite3/sqlite3_driver.php
- Source File : i_academy/system/database/drivers/sqlite3/sqlite3_forge.php
- Source File : i_academy/system/database/drivers/sqlite3/sqlite3_result.php
- Source File : i_academy/system/database/drivers/sqlite3/sqlite3_utility.php
- Source File : i_academy/system/database/drivers/sqlsrv/sqlsrv_driver.php
- Source File : i_academy/system/database/drivers/sqlsrv/sqlsrv_forge.php
- Source File : i_academy/system/database/drivers/sqlsrv/sqlsrv_result.php
- Source File : i_academy/system/database/drivers/sqlsrv/sqlsrv_utility.php
- Source File : i_academy/system/helpers/array_helper.php
- Source File : i_academy/system/helpers/captcha_helper.php
- Source File : i_academy/system/helpers/cookie_helper.php
- Source File : i_academy/system/helpers/date_helper.php
- Source File : i_academy/system/helpers/directory_helper.php
- Source File : i_academy/system/helpers/download_helper.php
- Source File : i_academy/system/helpers/email_helper.php
- Source File : i_academy/system/helpers/file_helper.php
- Source File : i_academy/system/helpers/form_helper.php
- Source File : i_academy/system/helpers/html_helper.php
- Source File : i_academy/system/helpers/inflector_helper.php
- Source File : i_academy/system/helpers/language_helper.php
- Source File : i_academy/system/helpers/number_helper.php
- Source File : i_academy/system/helpers/path_helper.php
- Source File : i_academy/system/helpers/security_helper.php
- Source File : i_academy/system/helpers/smiley_helper.php
- Source File : i_academy/system/helpers/string_helper.php
- Source File : i_academy/system/helpers/text_helper.php
- Source File : i_academy/system/helpers/typography_helper.php
- Source File : i_academy/system/helpers/url_helper.php
- Source File : i_academy/system/helpers/xml_helper.php
- Source File : i_academy/system/language/english/calendar_lang.php
- Source File : i_academy/system/language/english/date_lang.php
- Source File : i_academy/system/language/english/db_lang.php
- Source File : i_academy/system/language/english/email_lang.php
- Source File : i_academy/system/language/english/form_validation_lang.php
- Source File : i_academy/system/language/english/ftp_lang.php
- Source File : i_academy/system/language/english/imglib_lang.php
- Source File : i_academy/system/language/english/migration_lang.php
- Source File : i_academy/system/language/english/number_lang.php
- Source File : i_academy/system/language/english/pagination_lang.php
- Source File : i_academy/system/language/english/profiler_lang.php
- Source File : i_academy/system/language/english/unit_test_lang.php
- Source File : i_academy/system/language/english/upload_lang.php
- Source File : i_academy/system/libraries/Calendar.php
- Source File : i_academy/system/libraries/Cart.php
- Source File : i_academy/system/libraries/Driver.php
- Source File : i_academy/system/libraries/Email.php
- Source File : i_academy/system/libraries/Encrypt.php
- Source File : i_academy/system/libraries/Encryption.php
- Source File : i_academy/system/libraries/Form_validation.php
- Source File : i_academy/system/libraries/Ftp.php
- Source File : i_academy/system/libraries/Image_lib.php
- Source File : i_academy/system/libraries/Javascript.php
- Source File : i_academy/system/libraries/Migration.php
- Source File : i_academy/system/libraries/Pagination.php
- Source File : i_academy/system/libraries/Parser.php
- Source File : i_academy/system/libraries/Profiler.php
- Source File : i_academy/system/libraries/Table.php
- Source File : i_academy/system/libraries/Trackback.php
- Source File : i_academy/system/libraries/Typography.php
- Source File : i_academy/system/libraries/Unit_test.php
- Source File : i_academy/system/libraries/Upload.php
- Source File : i_academy/system/libraries/User_agent.php
- Source File : i_academy/system/libraries/Xmlrpc.php
- Source File : i_academy/system/libraries/Xmlrpcs.php
- Source File : i_academy/system/libraries/Zip.php
- Source File : i_academy/system/libraries/Cache/Cache.php
- Source File : i_academy/system/libraries/Cache/drivers/Cache_apc.php
- Source File : i_academy/system/libraries/Cache/drivers/Cache_dummy.php
- Source File : i_academy/system/libraries/Cache/drivers/Cache_file.php
- Source File : i_academy/system/libraries/Cache/drivers/Cache_memcached.php
- Source File : i_academy/system/libraries/Cache/drivers/Cache_redis.php
- Source File : i_academy/system/libraries/Cache/drivers/Cache_wincache.php
- Source File : i_academy/system/libraries/Javascript/Jquery.php
- Source File : i_academy/system/libraries/Session/Session.php
- Source File : i_academy/system/libraries/Session/SessionHandlerInterface.php
- Source File : i_academy/system/libraries/Session/Session_driver.php
- Source File : i_academy/system/libraries/Session/drivers/Session_database_driver.php
- Source File : i_academy/system/libraries/Session/drivers/Session_files_driver.php
- Source File : i_academy/system/libraries/Session/drivers/Session_memcached_driver.php
- Source File : i_academy/system/libraries/Session/drivers/Session_redis_driver.php
- Source File : i_academy/update_pack/version-4.7/update_instructions.txt
- Source File : i_academy/update_pack/version-5.0/update_instructions.txt
- Source File : i_academy/uploads/lesson_files/.htaccess
- Source File : i_academy/uploads/lesson_files/videos/.htaccess